diff options
author | Chris Lattner <sabre@nondot.org> | 2011-11-27 06:18:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-11-27 06:18:33 +0000 |
commit | a7e6f74631d8a484b3c8e0d9546c221824ab42a5 (patch) | |
tree | 34a65b53548cbbbb3a707a294562b4b29813c06b /lib/Bitcode | |
parent | 663aebf8d65ce649d8a888a2a29493fe649b5c5d (diff) |
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/Bitcode')
-rw-r--r-- | lib/Bitcode/Reader/BitcodeReader.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index 43cab15922..3682e6ddca 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2701,9 +2701,6 @@ bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) { } std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics); - // Check debug info intrinsics. - CheckDebugInfoIntrinsics(TheModule); - return false; } |