Fix copy-and-paste bug that I introduced while tidying up the code.

Does anyone want to buy me a new brain?

llvm-svn: 128890
This commit is contained in:
David Chisnall 2011-04-05 17:15:18 +00:00
parent d8a6dd6c99
commit ec343e8544

View File

@ -614,7 +614,7 @@ class CGObjCGNUstep : public CGObjCGNU {
// void __cxa_end_catch(void)
EnterCatchFn.init(&CGM, "__cxa_end_catch", VoidTy, NULL);
// void _Unwind_Resume_or_Rethrow(void*)
EnterCatchFn.init(&CGM, "_Unwind_Resume_or_Rethrow", VoidTy, PtrTy, NULL);
ExceptionReThrowFn.init(&CGM, "_Unwind_Resume_or_Rethrow", VoidTy, PtrTy, NULL);
}
}
};