diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-25 22:34:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-25 22:34:15 +0000 |
commit | f30862f33ba8cdf90aa032e478ade6f2ce1fc0c6 (patch) | |
tree | d3db43cb020280e1392ffa68020bb874bc19cbab /lib/Transforms/Utils/InlineFunction.cpp | |
parent | 4dee6d781eb7a6755f63929630204aff4fab998b (diff) |
Remove special casing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/InlineFunction.cpp')
-rw-r--r-- | lib/Transforms/Utils/InlineFunction.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp index 017fbe1cca..adf4196c1a 100644 --- a/lib/Transforms/Utils/InlineFunction.cpp +++ b/lib/Transforms/Utils/InlineFunction.cpp @@ -211,9 +211,6 @@ bool InlineFunction(CallSite CS) { } break; // Done with this basic block! - } else if (ID == LLVMIntrinsic::exc_setcurrent || - ID == LLVMIntrinsic::exc_getcurrent) { - ShouldInvokify = false; // Not correct to invokify exc.throw! } // If we should convert this function into an invoke instruction, do |