diff options
author | Chris Lattner <sabre@nondot.org> | 2011-11-27 05:48:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-11-27 05:48:27 +0000 |
commit | 1c9e5678b8256a1361ef911ba88d87a09fc19986 (patch) | |
tree | 6f5ef4a1f695fcd1cda7e836f8c7aabd39b1df47 /llvm/lib/Bitcode/Reader/BitcodeReader.h | |
parent | 74a3e00ebf34d9c45ef4ad68e3676ec64d3e83f4 (diff) | |
download | bcm5719-llvm-1c9e5678b8256a1361ef911ba88d87a09fc19986.tar.gz bcm5719-llvm-1c9e5678b8256a1361ef911ba88d87a09fc19986.zip |
remove support for reading llvm 2.9 .bc files. LLVM 3.1 is only compatible back to 3.0
llvm-svn: 145164
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.h')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.h b/llvm/lib/Bitcode/Reader/BitcodeReader.h index 6e6118cac0d..add8ac56ccb 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.h +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.h @@ -211,7 +211,6 @@ public: bool ParseTriple(std::string &Triple); private: Type *getTypeByID(unsigned ID); - Type *getTypeByIDOrNull(unsigned ID); Value *getFnValueByID(unsigned ID, Type *Ty) { if (Ty && Ty->isMetadataTy()) return MDValueList.getValueFwdRef(ID); @@ -259,10 +258,8 @@ private: bool ParseModule(); bool ParseAttributeBlock(); bool ParseTypeTable(); - bool ParseOldTypeTable(); // FIXME: Remove in LLVM 3.1 bool ParseTypeTableBody(); - bool ParseOldTypeSymbolTable(); // FIXME: Remove in LLVM 3.1 bool ParseValueSymbolTable(); bool ParseConstants(); bool RememberAndSkipFunctionBody(); |