summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-11-27 05:56:16 +0000
committerChris Lattner <sabre@nondot.org>2011-11-27 05:56:16 +0000
commit9d5f6ccd26615592361baa299fc5b450501fb1b0 (patch)
treed5089daa55242307e69d0a71f9ffd837b485abfe /lib/AsmParser/LLParser.cpp
parentdbc88494eefd32274ff6e037df0000c0d0e871d2 (diff)
downloadllvm-9d5f6ccd26615592361baa299fc5b450501fb1b0.tar.gz
llvm-9d5f6ccd26615592361baa299fc5b450501fb1b0.tar.bz2
llvm-9d5f6ccd26615592361baa299fc5b450501fb1b0.tar.xz
remove autoupgrade support for LLVM 2.9 exception stuff. Mainline supports
LLVM 3.0 and later. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r--lib/AsmParser/LLParser.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index cafaab01af..d2c91dd21c 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -120,9 +120,6 @@ bool LLParser::ValidateEndOfModule() {
for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
- // Upgrade to new EH scheme. N.B. This will go away in 3.1.
- UpgradeExceptionHandling(M);
-
// Check debug info intrinsics.
CheckDebugInfoIntrinsics(M);
return false;