summaryrefslogtreecommitdiff
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-11-27 06:18:33 +0000
committerChris Lattner <sabre@nondot.org>2011-11-27 06:18:33 +0000
commita7e6f74631d8a484b3c8e0d9546c221824ab42a5 (patch)
tree34a65b53548cbbbb3a707a294562b4b29813c06b /lib/AsmParser
parent663aebf8d65ce649d8a888a2a29493fe649b5c5d (diff)
downloadllvm-a7e6f74631d8a484b3c8e0d9546c221824ab42a5.tar.gz
llvm-a7e6f74631d8a484b3c8e0d9546c221824ab42a5.tar.bz2
llvm-a7e6f74631d8a484b3c8e0d9546c221824ab42a5.tar.xz
remove autoupgrade support for really old-style debug info intrinsics.
I think this is the last of autoupgrade that can be removed in 3.1. Can the atomic upgrade stuff also go? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-rw-r--r--lib/AsmParser/LLParser.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index d2c91dd21c..f01e995401 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -120,8 +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
- // Check debug info intrinsics.
- CheckDebugInfoIntrinsics(M);
return false;
}