diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-25 22:35:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-25 22:35:01 +0000 |
commit | ea9891311a720c44607956593c35725aea4e2380 (patch) | |
tree | 32633a3519de2d7e21ffe194be8f6acdb5169514 /llvm/lib/VMCore/Function.cpp | |
parent | be8d6816d0f86d54635f8dbb92d036fefbd99061 (diff) | |
download | bcm5719-llvm-ea9891311a720c44607956593c35725aea4e2380.tar.gz bcm5719-llvm-ea9891311a720c44607956593c35725aea4e2380.zip |
As it turns out, things will be simpler than I first expected. We no longer
need any exception handling intrinsics beyond llvm.unwind. (yaay)
llvm-svn: 8145
Diffstat (limited to 'llvm/lib/VMCore/Function.cpp')
-rw-r--r-- | llvm/lib/VMCore/Function.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp index ce190c80a3f..ccbe4c22448 100644 --- a/llvm/lib/VMCore/Function.cpp +++ b/llvm/lib/VMCore/Function.cpp @@ -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; |