[llvm-commits] [llvm] r137163 - /llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
Chad Rosier
mcrosier at apple.com
Tue Aug 9 15:23:40 PDT 2011
Author: mcrosier
Date: Tue Aug 9 17:23:40 2011
New Revision: 137163
URL: http://llvm.org/viewvc/llvm-project?rev=137163&view=rev
Log:
Fix 80-column violations.
Modified:
llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
Modified: llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp?rev=137163&r1=137162&r2=137163&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp (original)
+++ llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp Tue Aug 9 17:23:40 2011
@@ -1859,9 +1859,9 @@
if (Code != bitc::ENTER_SUBBLOCK) {
- // The ranlib in xcode 4 will align archive members by appending newlines to the
- // end of them. If this file size is a multiple of 4 but not 8, we have to read and
- // ignore these final 4 bytes :-(
+ // The ranlib in xcode 4 will align archive members by appending newlines
+ // to the end of them. If this file size is a multiple of 4 but not 8, we
+ // have to read and ignore these final 4 bytes :-(
if (Stream.GetAbbrevIDWidth() == 2 && Code == 2 &&
Stream.Read(6) == 2 && Stream.Read(24) == 0xa0a0a &&
Stream.AtEndOfStream())
More information about the llvm-commits
mailing list