summaryrefslogtreecommitdiff
path: root/www/webkit-gtk2/files/extra-patch-JavaScriptCore_jit_JITOpcodes.cpp
blob: 6e6ffe8314865bed31437dea8d1f59faf0082da0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- JavaScriptCore/jit/JITOpcodes.cpp.orig	2009-09-29 15:43:18.000000000 -0400
+++ JavaScriptCore/jit/JITOpcodes.cpp	2009-11-01 13:09:39.000000000 -0500
@@ -270,7 +270,7 @@ void JIT::privateCompileCTIMachineTrampo
     emitGetFromCallFrameHeaderPtr(RegisterFile::ReturnPC, regT1);
     move(ImmPtr(&globalData->exceptionLocation), regT2);
     storePtr(regT1, regT2);
-    move(ImmPtr(reinterpret_cast<void*>(ctiVMThrowTrampoline)), regT2);
+    move(ImmPtr((void*)(ctiVMThrowTrampoline)), regT2);
     emitGetFromCallFrameHeaderPtr(RegisterFile::CallerFrame, callFrameRegister);
     poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*));
     restoreReturnAddressBeforeReturn(regT2);
@@ -1754,7 +1754,7 @@ void JIT::privateCompileCTIMachineTrampo
     emitGetFromCallFrameHeaderPtr(RegisterFile::ReturnPC, regT1);
     move(ImmPtr(&globalData->exceptionLocation), regT2);
     storePtr(regT1, regT2);
-    move(ImmPtr(reinterpret_cast<void*>(ctiVMThrowTrampoline)), regT2);
+    move(ImmPtr((void*)(ctiVMThrowTrampoline)), regT2);
     emitGetFromCallFrameHeaderPtr(RegisterFile::CallerFrame, callFrameRegister);
     poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*));
     restoreReturnAddressBeforeReturn(regT2);