| Index: runtime/vm/code_generator_test.cc
|
| ===================================================================
|
| --- runtime/vm/code_generator_test.cc (revision 25822)
|
| +++ runtime/vm/code_generator_test.cc (working copy)
|
| @@ -218,11 +218,13 @@
|
| String::ZoneHandle(Symbols::New("TestSmiSub"));
|
| NativeFunction native_function =
|
| reinterpret_cast<NativeFunction>(TestSmiSub);
|
| - node_seq->Add(new ReturnNode(kPos,
|
| - new NativeBodyNode(kPos,
|
| - function,
|
| - native_name,
|
| - native_function)));
|
| + node_seq->Add(
|
| + new ReturnNode(kPos,
|
| + new NativeBodyNode(kPos,
|
| + function,
|
| + native_name,
|
| + native_function,
|
| + false /* not bootstrap native */)));
|
| }
|
|
|
|
|
| @@ -398,11 +400,13 @@
|
| String::ZoneHandle(Symbols::New("TestSmiSum"));
|
| NativeFunction native_function =
|
| reinterpret_cast<NativeFunction>(TestSmiSum);
|
| - node_seq->Add(new ReturnNode(kPos,
|
| - new NativeBodyNode(kPos,
|
| - function,
|
| - native_name,
|
| - native_function)));
|
| + node_seq->Add(
|
| + new ReturnNode(kPos,
|
| + new NativeBodyNode(kPos,
|
| + function,
|
| + native_name,
|
| + native_function,
|
| + false /* Not bootstrap native */)));
|
| }
|
|
|
|
|
| @@ -485,11 +489,13 @@
|
| String::ZoneHandle(Symbols::New("TestNonNullSmiSum"));
|
| NativeFunction native_function =
|
| reinterpret_cast<NativeFunction>(TestNonNullSmiSum);
|
| - node_seq->Add(new ReturnNode(kPos,
|
| - new NativeBodyNode(kPos,
|
| - function,
|
| - native_name,
|
| - native_function)));
|
| + node_seq->Add(
|
| + new ReturnNode(kPos,
|
| + new NativeBodyNode(kPos,
|
| + function,
|
| + native_name,
|
| + native_function,
|
| + false /* Not bootstrap native */)));
|
| }
|
|
|
|
|
|
|