Chromium Code Reviews

Unified Diff: src/mips64/simulator-mips64.cc

Issue 798413003: Remove obsolete V8_INFINITY macro. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Cleanup Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/mips64/simulator-mips64.cc
diff --git a/src/mips64/simulator-mips64.cc b/src/mips64/simulator-mips64.cc
index 9899d47a0e5ec940d99bf1514827f6f57f2187f9..86b1d8ef3ab5b3ede644ba9c601f88a9b9c04c00 100644
--- a/src/mips64/simulator-mips64.cc
+++ b/src/mips64/simulator-mips64.cc
@@ -1204,7 +1204,8 @@ bool Simulator::set_fcsr_round_error(double original, double rounded) {
set_fcsr_bit(kFCSRInexactFlagBit, true);
}
- if (rounded < DBL_MIN && rounded > -DBL_MIN && rounded != 0) {
+ if (rounded < std::numeric_limits<double>::min() &&
+ rounded > -std::numeric_limits<double>::min() && rounded != 0) {
set_fcsr_bit(kFCSRUnderflowFlagBit, true);
ret = true;
}
@@ -1236,7 +1237,8 @@ bool Simulator::set_fcsr_round64_error(double original, double rounded) {
set_fcsr_bit(kFCSRInexactFlagBit, true);
}
- if (rounded < DBL_MIN && rounded > -DBL_MIN && rounded != 0) {
+ if (rounded < std::numeric_limits<double>::min() &&
+ rounded > -std::numeric_limits<double>::min() && rounded != 0) {
set_fcsr_bit(kFCSRUnderflowFlagBit, true);
ret = true;
}

Powered by Google App Engine