Fix new snapshot compilation on ARM.
authorerik.corry@gmail.com <erik.corry@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 30 Oct 2009 11:28:49 +0000 (11:28 +0000)
committererik.corry@gmail.com <erik.corry@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 30 Oct 2009 11:28:49 +0000 (11:28 +0000)
Review URL: http://codereview.chromium.org/349001

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3185 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/arm/assembler-arm.h

index 0bb942aa853275359073ad2a818cea5215353db1..b99d83c8a762aa487a3e7ca51b4ffc52e48afbf4 100644 (file)
@@ -439,16 +439,13 @@ class Assembler : public Malloced {
 
   // This sets the branch destination (which is in the constant pool on ARM).
   // This is for calls and branches within generated code.
-  inline static void set_target_at(Address constant_pool_entry,
-                                   Address target) {
-    set_target_address_at(constant_pool_entry, target);
-  }
+  inline static void set_target_at(Address constant_pool_entry, Address target);
 
   // This sets the branch destination (which is in the constant pool on ARM).
   // This is for calls and branches to runtime code.
   inline static void set_external_target_at(Address constant_pool_entry,
                                             Address target) {
-    set_target_address_at(constant_pool_entry, target);
+    set_target_at(constant_pool_entry, target);
   }
 
   // Here we are patching the address in the constant pool, not the actual call