Revision: 3185
Author: [email protected]
Date: Fri Oct 30 04:28:49 2009
Log: Fix new snapshot compilation on ARM.
Review URL: http://codereview.chromium.org/349001
http://code.google.com/p/v8/source/detail?r=3185
Modified:
/branches/bleeding_edge/src/arm/assembler-arm.h
=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm.h Fri Oct 30 03:23:12 2009
+++ /branches/bleeding_edge/src/arm/assembler-arm.h Fri Oct 30 04:28:49 2009
@@ -439,16 +439,13 @@
// 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
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---