Chromium Code Reviews| Index: runtime/vm/intermediate_language.cc |
| =================================================================== |
| --- runtime/vm/intermediate_language.cc (revision 25734) |
| +++ runtime/vm/intermediate_language.cc (working copy) |
| @@ -1076,7 +1076,9 @@ |
| bool BinarySmiOpInstr::CanDeoptimize() const { |
| +#if defined(TARGET_ARCH_X64) |
| if (FLAG_throw_on_javascript_int_overflow) return true; |
|
srdjan
2013/08/02 18:07:22
Instead of the architecture specific ifdef you cou
zra
2013/08/02 18:30:27
Done.
|
| +#endif |
| switch (op_kind()) { |
| case Token::kBIT_AND: |
| case Token::kBIT_OR: |