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 | bfa964699f2ee6390a713bd1f77953d61e38e93d (patch) | |
tree | 8b5ca4cc0f74152f80d23cb544efb396cfb9db79 /lib/VMCore/Function.cpp | |
parent | f30862f33ba8cdf90aa032e478ade6f2ce1fc0c6 (diff) |
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
Diffstat (limited to 'lib/VMCore/Function.cpp')
-rw-r--r-- | lib/VMCore/Function.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index ce190c80a3..ccbe4c2244 100644 --- a/lib/VMCore/Function.cpp +++ b/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; |