Index: src/compiler/js-graph.cc |
diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc |
index db47c57fc91bbe952d414bdaf22e6bb30fee6f3f..cb13480ef99c7324616234357b7f26163e73ea71 100644 |
--- a/src/compiler/js-graph.cc |
+++ b/src/compiler/js-graph.cc |
@@ -134,8 +134,8 @@ Node* JSGraph::Constant(Handle<Object> value) { |
Node* JSGraph::Constant(double value) { |
- if (BitCast<int64_t>(value) == BitCast<int64_t>(0.0)) return ZeroConstant(); |
- if (BitCast<int64_t>(value) == BitCast<int64_t>(1.0)) return OneConstant(); |
+ if (bit_cast<int64_t>(value) == bit_cast<int64_t>(0.0)) return ZeroConstant(); |
+ if (bit_cast<int64_t>(value) == bit_cast<int64_t>(1.0)) return OneConstant(); |
return NumberConstant(value); |
} |