diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-05 06:28:52 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-05 06:28:52 +0000 |
commit | 5895edaf66c242ba58e83bc03ba213e1af005eff (patch) | |
tree | ec78de97015a334f921265551c163f29bf361bde /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 1b170de77aaf0fe41985db458a9aa01d8cee8dfc (diff) | |
download | llvm-5895edaf66c242ba58e83bc03ba213e1af005eff.zip llvm-5895edaf66c242ba58e83bc03ba213e1af005eff.tar.gz llvm-5895edaf66c242ba58e83bc03ba213e1af005eff.tar.bz2 |
Add a FIXME that assumes we maintain backward compatibility until the next major release.
llvm-svn: 163195
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index a3b65a2..078188b 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1246,6 +1246,7 @@ bool BitcodeReader::ParseConstants() { break; } // This maintains backward compatibility, pre-'nsdialect'. + // FIXME: Remove with the 4.0 release. case bitc::CST_CODE_INLINEASM_OLD: { if (Record.size() < 2) return Error("Invalid INLINEASM record"); std::string AsmStr, ConstrStr; |