| Index: test/cctest/compiler/test-simplified-lowering.cc
|
| diff --git a/test/cctest/compiler/test-simplified-lowering.cc b/test/cctest/compiler/test-simplified-lowering.cc
|
| index cce2a82ac92c716b66334b3e8f0a513222abb3be..b930094a03ddc3b836fc6a42953a451960234fd5 100644
|
| --- a/test/cctest/compiler/test-simplified-lowering.cc
|
| +++ b/test/cctest/compiler/test-simplified-lowering.cc
|
| @@ -1051,15 +1051,15 @@ TEST(LowerReferenceEqual_to_wordeq) {
|
| }
|
|
|
|
|
| -TEST(LowerStringOps_to_rtcalls) {
|
| - if (false) { // TODO(titzer): lower StringOps to runtime calls
|
| - TestingGraph t(Type::String(), Type::String());
|
| +TEST(LowerStringOps_to_calls) {
|
| + TestingGraph t(Type::String(), Type::String());
|
| + if (false) { // TODO(titzer): lower StringOps to stub/runtime calls
|
| t.CheckLoweringBinop(IrOpcode::kCall, t.simplified()->StringEqual());
|
| t.CheckLoweringBinop(IrOpcode::kCall, t.simplified()->StringLessThan());
|
| t.CheckLoweringBinop(IrOpcode::kCall,
|
| t.simplified()->StringLessThanOrEqual());
|
| - t.CheckLoweringBinop(IrOpcode::kCall, t.simplified()->StringAdd());
|
| }
|
| + t.CheckLoweringBinop(IrOpcode::kCall, t.simplified()->StringAdd());
|
| }
|
|
|
|
|
|
|