[llvm] r258151 - NFC Test Commit whitespace change in a comment

Chris Ray via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 19 10:01:24 PST 2016


Author: cray
Date: Tue Jan 19 12:01:20 2016
New Revision: 258151

URL: http://llvm.org/viewvc/llvm-project?rev=258151&view=rev
Log:
NFC Test Commit whitespace change in a comment

Changed whitespace so comments line up.

Modified:
    llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp

Modified: llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp?rev=258151&r1=258150&r2=258151&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp (original)
+++ llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp Tue Jan 19 12:01:20 2016
@@ -2111,7 +2111,7 @@ static void WriteInstruction(const Instr
   case Instruction::AtomicCmpXchg:
     Code = bitc::FUNC_CODE_INST_CMPXCHG;
     PushValueAndType(I.getOperand(0), InstID, Vals, VE);  // ptrty + ptr
-    PushValueAndType(I.getOperand(1), InstID, Vals, VE);         // cmp.
+    PushValueAndType(I.getOperand(1), InstID, Vals, VE);  // cmp.
     pushValue(I.getOperand(2), InstID, Vals, VE);         // newval.
     Vals.push_back(cast<AtomicCmpXchgInst>(I).isVolatile());
     Vals.push_back(GetEncodedOrdering(




More information about the llvm-commits mailing list