diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-08-09 22:23:40 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-08-09 22:23:40 +0000 |
commit | a15e3aaaad5dc17f804c91b631ea899a791883cd (patch) | |
tree | 21388614200eca5bb479d73d31118696d7cd5d9e /llvm/lib/Bitcode | |
parent | 6463cfa36c4ff786c05ed0103bc76890b7cd5281 (diff) | |
download | bcm5719-llvm-a15e3aaaad5dc17f804c91b631ea899a791883cd.tar.gz bcm5719-llvm-a15e3aaaad5dc17f804c91b631ea899a791883cd.zip |
Fix 80-column violations.
llvm-svn: 137163
Diffstat (limited to 'llvm/lib/Bitcode')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index b4e105055e9..a5d51565c31 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1859,9 +1859,9 @@ bool BitcodeReader::ParseBitcodeInto(Module *M) { 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()) |