Chromium Code Reviews| Index: src/x64/macro-assembler-x64.cc |
| =================================================================== |
| --- src/x64/macro-assembler-x64.cc (revision 2580) |
| +++ src/x64/macro-assembler-x64.cc (working copy) |
| @@ -71,9 +71,9 @@ |
| Register op, |
| Label* then_label) { |
| Label ok; |
| - testq(result, result); |
| + testl(result, result); |
| j(not_zero, &ok); |
| - testq(op, op); |
| + testl(op, op); |
| j(sign, then_label); |
| bind(&ok); |
| } |