[llvm-commits] CVS: llvm/lib/Bytecode/Writer/Writer.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 12 10:34:20 PST 2005



Changes in directory llvm/lib/Bytecode/Writer:

Writer.cpp updated: 1.115 -> 1.116
---
Log message:

trivial cleanup


---
Diffs of the changes:  (+2 -2)

 Writer.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Bytecode/Writer/Writer.cpp
diff -u llvm/lib/Bytecode/Writer/Writer.cpp:1.115 llvm/lib/Bytecode/Writer/Writer.cpp:1.116
--- llvm/lib/Bytecode/Writer/Writer.cpp:1.115	Fri Nov 11 19:33:40 2005
+++ llvm/lib/Bytecode/Writer/Writer.cpp	Sat Nov 12 12:34:09 2005
@@ -161,8 +161,8 @@
   Out.push_back( static_cast<unsigned char>( (i >> 56) & 0xFF));
 }
 
-inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter& w,
-                                    bool elideIfEmpty, bool hasLongFormat )
+inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter &w,
+                                    bool elideIfEmpty, bool hasLongFormat)
   : Id(ID), Writer(w), ElideIfEmpty(elideIfEmpty), HasLongFormat(hasLongFormat){
 
   if (HasLongFormat) {






More information about the llvm-commits mailing list