Revision: 25203
Author: [email protected]
Date: Thu Nov 6 17:41:24 2014 UTC
Log: Disable ranging for modulus in hopes it will fix arm.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/705113002
https://code.google.com/p/v8/source/detail?r=25203
Modified:
/branches/bleeding_edge/src/compiler/typer.cc
=======================================
--- /branches/bleeding_edge/src/compiler/typer.cc Thu Nov 6 13:10:20 2014
UTC
+++ /branches/bleeding_edge/src/compiler/typer.cc Thu Nov 6 17:41:24 2014
UTC
@@ -1033,7 +1033,8 @@
lhs = Rangify(lhs, t);
rhs = Rangify(rhs, t);
if (lhs->IsRange() && rhs->IsRange()) {
- return JSModulusRanger(lhs->AsRange(), rhs->AsRange(), t);
+ // TODO(titzer): fix me.
+ // return JSModulusRanger(lhs->AsRange(), rhs->AsRange(), t);
}
return Type::OrderedNumber();
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.