From b1b94de243e8dd3a36b8be42794ed70a09271cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Fri, 5 Dec 2014 15:38:19 +0100 Subject: [PATCH] Opcodes update --- libevmjit/Instruction.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libevmjit/Instruction.h b/libevmjit/Instruction.h index efc43552c..86c529e18 100644 --- a/libevmjit/Instruction.h +++ b/libevmjit/Instruction.h @@ -10,7 +10,7 @@ namespace jit { /// Virtual machine bytecode instruction. -enum class Instruction : uint8_t +enum class Instruction: uint8_t { STOP = 0x00, ///< halts execution ADD, ///< addition operation @@ -148,8 +148,8 @@ enum class Instruction : uint8_t CREATE = 0xf0, ///< create a new account with associated code CALL, ///< message-call into an account + CALLCODE, ///< message-call with another account's code only RETURN, ///< halt execution returning output data - CALLCODE, SUICIDE = 0xff ///< halt execution and register account for later deletion };