From ac2b907a4f3a626b4354c607ef8248dcf862ca70 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sat, 8 Nov 2014 18:14:18 +0000 Subject: [PATCH] Minor Instructions fix for PoC-7 renames. --- libevmcore/Instruction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libevmcore/Instruction.cpp b/libevmcore/Instruction.cpp index a55cc2242..ad27b28ef 100644 --- a/libevmcore/Instruction.cpp +++ b/libevmcore/Instruction.cpp @@ -172,13 +172,13 @@ static const std::map c_instructionInfo = { Instruction::MOD, { "MOD", 0, 2, 1 } }, { Instruction::SMOD, { "SMOD", 0, 2, 1 } }, { Instruction::EXP, { "EXP", 0, 2, 1 } }, - { Instruction::NOT, { "BNOT", 0, 1, 1 } }, + { Instruction::NOT, { "NOT", 0, 1, 1 } }, { Instruction::LT, { "LT", 0, 2, 1 } }, { Instruction::GT, { "GT", 0, 2, 1 } }, { Instruction::SLT, { "SLT", 0, 2, 1 } }, { Instruction::SGT, { "SGT", 0, 2, 1 } }, { Instruction::EQ, { "EQ", 0, 2, 1 } }, - { Instruction::ISZERO, { "NOT", 0, 1, 1 } }, + { Instruction::ISZERO, { "ISZERO", 0, 1, 1 } }, { Instruction::AND, { "AND", 0, 2, 1 } }, { Instruction::OR, { "OR", 0, 2, 1 } }, { Instruction::XOR, { "XOR", 0, 2, 1 } },