summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LowerInvoke.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-01 01:12:13 +0000
committerChris Lattner <sabre@nondot.org>2004-03-01 01:12:13 +0000
commit99cca7d3aa774d52b28f04bb0783747c038cda7a (patch)
tree6a8b38d3ced52229fba8f50ae07d49c2410ff1a2 /lib/Transforms/Utils/LowerInvoke.cpp
parent201ff603a79a677ca5feb438dd3fbe4b42fded14 (diff)
downloadllvm-99cca7d3aa774d52b28f04bb0783747c038cda7a.tar.gz
llvm-99cca7d3aa774d52b28f04bb0783747c038cda7a.tar.bz2
llvm-99cca7d3aa774d52b28f04bb0783747c038cda7a.tar.xz
Disable tail duplication in a case that breaks on Olden/tsp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerInvoke.cpp')
-rw-r--r--lib/Transforms/Utils/LowerInvoke.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LowerInvoke.cpp b/lib/Transforms/Utils/LowerInvoke.cpp
index d42d0533f1..24033f4876 100644
--- a/lib/Transforms/Utils/LowerInvoke.cpp
+++ b/lib/Transforms/Utils/LowerInvoke.cpp
@@ -42,7 +42,7 @@ using namespace llvm;
namespace {
Statistic<> NumLowered("lowerinvoke", "Number of invoke & unwinds replaced");
- cl::opt<bool> ExpensiveEHSupport("enable-correct-eh-support",
+ cl::opt<bool> ExpensiveEHSupport("enable-correct-eh-support",
cl::desc("Make the -lowerinvoke pass insert expensive, but correct, EH code"));
class LowerInvoke : public FunctionPass {