| Index: test/cctest/test-deoptimization.cc
|
| diff --git a/test/cctest/test-deoptimization.cc b/test/cctest/test-deoptimization.cc
|
| index 4a53450ea9fce56eebdd9484f91eeefb5b0f2e93..f7359a996860fe3a548e71febf6f64925a80c00f 100644
|
| --- a/test/cctest/test-deoptimization.cc
|
| +++ b/test/cctest/test-deoptimization.cc
|
| @@ -397,9 +397,9 @@ static void CompileConstructorWithDeoptimizingValueOf() {
|
| static void TestDeoptimizeBinaryOpHelper(LocalContext* env,
|
| const char* binary_op) {
|
| EmbeddedVector<char, SMALL_STRING_BUFFER_SIZE> f_source_buffer;
|
| - OS::SNPrintF(f_source_buffer,
|
| - "function f(x, y) { return x %s y; };",
|
| - binary_op);
|
| + SNPrintF(f_source_buffer,
|
| + "function f(x, y) { return x %s y; };",
|
| + binary_op);
|
| char* f_source = f_source_buffer.start();
|
|
|
| AllowNativesSyntaxNoInlining options;
|
|
|