Revision: 12686 Author: [email protected] Date: Wed Oct 10 04:58:22 2012 Log: Fix compilation failure on ARM in r12685.
[email protected] Review URL: https://codereview.chromium.org/11103004 http://code.google.com/p/v8/source/detail?r=12686 Modified: /branches/bleeding_edge/src/gdb-jit.cc ======================================= --- /branches/bleeding_edge/src/gdb-jit.cc Tue Oct 9 01:24:58 2012 +++ /branches/bleeding_edge/src/gdb-jit.cc Wed Oct 10 04:58:22 2012 @@ -677,7 +677,7 @@ { 0x7f, 'E', 'L', 'F', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0}; #elif defined(V8_TARGET_ARCH_X64) const uint8_t ident[16] = - { 0x7f, 'E', 'L', 'F', 2, 1, 1, 0, 0, 0 , 0, 0, 0, 0, 0, 0}; + { 0x7f, 'E', 'L', 'F', 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0}; #else #error Unsupported target architecture. #endif @@ -1110,6 +1110,8 @@ w->Write<uint8_t>(DW_OP_reg5); // The frame pointer's here on ia32 #elif defined(V8_TARGET_ARCH_X64) w->Write<uint8_t>(DW_OP_reg6); // and here on x64. +#elif defined(V8_TARGET_ARCH_ARM) + UNIMPLEMENTED(); #else #error Unsupported target architecture. #endif -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
