@@ -1227,7 +1227,8 @@ HCIMPLEND
1227
1227
1228
1228
#if defined(TARGET_X86)
1229
1229
EXTERN_C FCDECL1 (void , IL_Throw, Object* obj);
1230
- EXTERN_C FCIMPL2 (void , IL_Throw_x86, Object* obj, TransitionBlock* transitionBlock)
1230
+ EXTERN_C FCDECL2 (void , IL_Throw_x86, Object* obj, TransitionBlock* transitionBlock);
1231
+ FCIMPL2 (void , IL_Throw_x86, Object* obj, TransitionBlock* transitionBlock)
1231
1232
#else
1232
1233
FCIMPL1 (void , IL_Throw, Object* obj)
1233
1234
#endif
@@ -1286,7 +1287,7 @@ FCIMPL1(void, IL_Throw, Object* obj)
1286
1287
INSTALL_UNWIND_AND_CONTINUE_HANDLER;
1287
1288
1288
1289
#if defined(_DEBUG) && defined(TARGET_X86)
1289
- g_ExceptionEIP = transitionBlock->m_ReturnAddress ;
1290
+ g_ExceptionEIP = (PVOID) transitionBlock->m_ReturnAddress ;
1290
1291
#endif // defined(_DEBUG) && defined(TARGET_X86)
1291
1292
1292
1293
if (oref == 0 )
@@ -1330,7 +1331,8 @@ FCIMPLEND
1330
1331
1331
1332
#if defined(TARGET_X86)
1332
1333
EXTERN_C FCDECL0 (void , IL_Rethrow);
1333
- EXTERN_C FCIMPL1 (void , IL_Rethrow_x86, TransitionBlock* transitionBlock)
1334
+ EXTERN_C FCDECL1 (void , IL_Rethrow_x86, TransitionBlock* transitionBlock);
1335
+ FCIMPL1 (void , IL_Rethrow_x86, TransitionBlock* transitionBlock)
1334
1336
#else
1335
1337
FCIMPL0 (void , IL_Rethrow)
1336
1338
#endif
@@ -1395,7 +1397,8 @@ FCIMPLEND
1395
1397
1396
1398
#if defined(TARGET_X86)
1397
1399
EXTERN_C FCDECL1 (void , IL_ThrowExact, Object* obj);
1398
- EXTERN_C FCIMPL2 (void , IL_ThrowExact_x86, Object* obj, TransitionBlock* transitionBlock)
1400
+ EXTERN_C FCDECL2 (void , IL_ThrowExact_x86, Object* obj, TransitionBlock* transitionBlock);
1401
+ FCIMPL2 (void , IL_ThrowExact_x86, Object* obj, TransitionBlock* transitionBlock)
1399
1402
#else
1400
1403
FCIMPL1 (void , IL_ThrowExact, Object* obj)
1401
1404
#endif
@@ -1429,7 +1432,7 @@ FCIMPL1(void, IL_ThrowExact, Object* obj)
1429
1432
INSTALL_UNWIND_AND_CONTINUE_HANDLER;
1430
1433
1431
1434
#if defined(_DEBUG) && defined(TARGET_X86)
1432
- g_ExceptionEIP = transitionBlock->m_ReturnAddress ;
1435
+ g_ExceptionEIP = (PVOID) transitionBlock->m_ReturnAddress ;
1433
1436
#endif // defined(_DEBUG) && defined(TARGET_X86)
1434
1437
1435
1438
RaiseTheExceptionInternalOnly (oref, FALSE );
0 commit comments