| Index: runtime/vm/object_arm64_test.cc
|
| ===================================================================
|
| --- runtime/vm/object_arm64_test.cc (revision 35109)
|
| +++ runtime/vm/object_arm64_test.cc (working copy)
|
| @@ -34,10 +34,10 @@
|
| void GenerateEmbedStringInCode(Assembler* assembler, const char* str) {
|
| const String& string_object =
|
| String::ZoneHandle(String::New(str, Heap::kOld));
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadObject(R0, string_object, PP);
|
| - __ Pop(PP); // Restore caller's pool pointer.
|
| + __ PopPP(); // Restore caller's pool pointer.
|
| __ ret();
|
| }
|
|
|
|
|