mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 13:10:42 +00:00
As it turns out, things will be simpler than I first expected. We no longer
need any exception handling intrinsics beyond llvm.unwind. (yaay) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8145 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f30862f33b
commit
bfa964699f
@ -24,10 +24,6 @@ namespace LLVMIntrinsic {
|
||||
|
||||
unwind, // Unwind stack until containing invoke is found
|
||||
|
||||
// Exception handling intrinsics...
|
||||
exc_setcurrent, // Set the current pending exception
|
||||
exc_getcurrent, // Get the current pending exception
|
||||
|
||||
// Setjmp/Longjmp intrinsics...
|
||||
setjmp, // Used to represent a setjmp call in C
|
||||
longjmp, // Used to represent a longjmp call in C
|
||||
|
@ -195,10 +195,6 @@ unsigned Function::getIntrinsicID() const {
|
||||
if (getName() == alpha_intrinsics[i].name)
|
||||
return alpha_intrinsics[i].id;
|
||||
break;
|
||||
case 'e':
|
||||
if (getName() == "llvm.exc.getcurrent")return LLVMIntrinsic::exc_getcurrent;
|
||||
if (getName() == "llvm.exc.setcurrent")return LLVMIntrinsic::exc_setcurrent;
|
||||
break;
|
||||
case 'l':
|
||||
if (getName() == "llvm.longjmp") return LLVMIntrinsic::longjmp;
|
||||
break;
|
||||
|
@ -523,8 +523,6 @@ void Verifier::visitIntrinsicFunctionCall(LLVMIntrinsic::ID ID, CallInst &CI) {
|
||||
case LLVMIntrinsic::va_copy: NumArgs = 2; break;
|
||||
|
||||
case LLVMIntrinsic::unwind: NumArgs = 0; break;
|
||||
case LLVMIntrinsic::exc_setcurrent: NumArgs = 1; break;
|
||||
case LLVMIntrinsic::exc_getcurrent: NumArgs = 0; break;
|
||||
|
||||
case LLVMIntrinsic::setjmp: NumArgs = 1; break;
|
||||
case LLVMIntrinsic::longjmp: NumArgs = 2; break;
|
||||
|
Loading…
Reference in New Issue
Block a user