From a0d3cac4e69101669681a4d8af6dc3e8bd2c9a6a Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sun, 15 Sep 2019 00:01:26 -0700 Subject: 5659 --- html/031check_operands.cc.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'html/031check_operands.cc.html') diff --git a/html/031check_operands.cc.html b/html/031check_operands.cc.html index 7eeeee30..a2f487d7 100644 --- a/html/031check_operands.cc.html +++ b/html/031check_operands.cc.html @@ -348,9 +348,9 @@ if ('onhashchange' in window) { 287 288 string maybe_name(const word& op) { 289 if (!is_hex_byte(op)) return ""; -290 if (!contains_key(Name, op.data)) return ""; +290 if (!contains_key(Name, op.data)) return ""; 291 // strip stuff in parens from the name -292 const string& s = get(Name, op.data); +292 const string& s = get(Name, op.data); 293 return " ("+s.substr(0, s.find(" ("))+')'; 294 } 295 @@ -501,7 +501,7 @@ if ('onhashchange' in window) { 440 } 441 442 void test_modrm_with_displacement() { -443 Reg[EAX].u = 0x1; +443 Reg[EAX].u = 0x1; 444 transform( 445 "== code 0x1\n" 446 // just avoid null pointer @@ -659,7 +659,7 @@ if ('onhashchange' in window) { 598 return; 599 } 600 word op = preprocess_op(inst.words.at(1)); -601 if (!contains_key(Name_0f, op.data)) { +601 if (!contains_key(Name_0f, op.data)) { 602 raise << "unknown 2-byte opcode '0f " << op.data << "'\n" << end(); 603 return; 604 } @@ -677,7 +677,7 @@ if ('onhashchange' in window) { 616 " 0f 84 # jmp if ZF to ??\n" 617 ); 618 CHECK_TRACE_CONTENTS( -619 "error: '0f 84' (jump disp32 bytes away if equal, if ZF is set): missing disp32 operand\n" +619 "error: '0f 84' (jump disp32 bytes away if equal, if ZF is set): missing disp32 operand\n" 620 ); 621 } 622 @@ -731,9 +731,9 @@ if ('onhashchange' in window) { 670 671 string maybe_name_0f(const word& op) { 672 if (!is_hex_byte(op)) return ""; -673 if (!contains_key(Name_0f, op.data)) return ""; +673 if (!contains_key(Name_0f, op.data)) return ""; 674 // strip stuff in parens from the name -675 const string& s = get(Name_0f, op.data); +675 const string& s = get(Name_0f, op.data); 676 return " ("+s.substr(0, s.find(" ("))+')'; 677 } 678 -- cgit 1.4.1-2-gfad0