Index: src/compiler/simplified-lowering.cc |
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc |
index 051d3feb88dfd180865c9265589ba8891acab84d..07d0a0da48a0904ea8d595ddd22ecf84f3cffde2 100644 |
--- a/src/compiler/simplified-lowering.cc |
+++ b/src/compiler/simplified-lowering.cc |
@@ -1323,7 +1323,7 @@ void SimplifiedLowering::DoStringAdd(Node* node) { |
Node* SimplifiedLowering::StringComparison(Node* node, bool requires_ordering) { |
CEntryStub stub(jsgraph()->isolate(), 1); |
Runtime::FunctionId f = |
- requires_ordering ? Runtime::kStringCompare : Runtime::kStringEquals; |
+ requires_ordering ? Runtime::kStringCompareRT : Runtime::kStringEquals; |
ExternalReference ref(f, jsgraph()->isolate()); |
Operator::Properties props = node->op()->properties(); |
// TODO(mstarzinger): We should call StringCompareStub here instead, once an |