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:
Chris Lattner 2003-08-25 22:35:01 +00:00
parent f30862f33b
commit bfa964699f
3 changed files with 0 additions and 10 deletions

View File

@ -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

View File

@ -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;

View File

@ -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;