diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-25 21:32:51 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-25 21:32:51 +0000 |
commit | bd729203312a470bf1c07359034121ea5068603a (patch) | |
tree | 61ee99c0a0046ea62e2d2d7ca1d905c70d6f9465 /llvm/lib/Bytecode/Reader | |
parent | b95885b210516fed5da5d55a3155a1341bf85318 (diff) | |
download | bcm5719-llvm-bd729203312a470bf1c07359034121ea5068603a.tar.gz bcm5719-llvm-bd729203312a470bf1c07359034121ea5068603a.zip |
Don't create a backwards compatibility flag for something that was a
regression bug introduced in release 1.2
llvm-svn: 15219
Diffstat (limited to 'llvm/lib/Bytecode/Reader')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index c93958419c3..97a82ca6e6e 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/lib/Bytecode/Reader/Reader.h @@ -279,10 +279,6 @@ private: /// 2^32-1 bytes long. bool hasLongBlockHeaders; - /// LLVM 1.2 and earlier wrote floating point values in a platform specific - /// bit ordering. This was fixed in LLVM 1.3 - bool hasPlatformSpecificFloatingPoint; - /// LLVM 1.2 and earlier wrote type slot numbers as vbr_uint32. In LLVM 1.3 /// this has been reduced to vbr_uint24. It shouldn't make much difference /// since we haven't run into a module with > 24 million types, but for safety |