Changeset 62230 in vbox for trunk/src/recompiler
- Timestamp:
- Jul 13, 2016 6:24:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/tcg/i386/tcg-target.c
r42602 r62230 725 725 by current Intel optimization manuals. */ 726 726 if (!cf && (c == ARITH_ADD || c == ARITH_SUB) && (val == 1 || val == -1)) { 727 int is_inc = (c == ARITH_ADD) ^ (val < 0);727 int is_inc = (c == ARITH_ADD) != (val < 0); /* VBox: cppcheck: "xor" for bools is "not-equals" */ 728 728 if (TCG_TARGET_REG_BITS == 64) { 729 729 /* The single-byte increment encodings are re-tasked as the
Note:
See TracChangeset
for help on using the changeset viewer.