[llvm-commits] [llvm] r149887 -	/llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
    Derek Schuff 
    dschuff at google.com
       
    Mon Feb  6 11:03:04 PST 2012
    
    
  
Author: dschuff
Date: Mon Feb  6 13:03:04 2012
New Revision: 149887
URL: http://llvm.org/viewvc/llvm-project?rev=149887&view=rev
Log:
Test commit; also removes some trailing whitespace
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=149887&r1=149886&r2=149887&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp (original)
+++ llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp Mon Feb  6 13:03:04 2012
@@ -401,7 +401,7 @@
   // The type table size is always specified correctly.
   if (ID >= TypeList.size())
     return 0;
-  
+
   if (Type *Ty = TypeList[ID])
     return Ty;
 
@@ -522,7 +522,7 @@
 bool BitcodeReader::ParseTypeTable() {
   if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
     return Error("Malformed block record");
-  
+
   return ParseTypeTableBody();
 }
 
@@ -534,7 +534,7 @@
   unsigned NumRecords = 0;
 
   SmallString<64> TypeName;
-  
+
   // Read all the records for this type table.
   while (1) {
     unsigned Code = Stream.ReadCode();
    
    
More information about the llvm-commits
mailing list