Skip to content

Commit

Permalink
Fix bswap semantic
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanSalwan committed Jan 25, 2016
1 parent bb5fe2b commit 0f1962f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libtriton/arch/x86/x86Semantics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1360,6 +1360,7 @@ namespace triton {
case DWORD_SIZE:
bytes.push_front(smt2lib::extract(31, 24, op1));
bytes.push_front(smt2lib::extract(23, 16, op1));
case WORD_SIZE:
bytes.push_front(smt2lib::extract(15, 8, op1));
bytes.push_front(smt2lib::extract(7, 0, op1));
break;
Expand Down

0 comments on commit 0f1962f

Please sign in to comment.