[llvm-commits] [llvm] r115910 - /llvm/trunk/lib/MC/WinCOFFStreamer.cpp

NAKAMURA Takumi geek4civic at gmail.com
Thu Oct 7 00:21:04 PDT 2010


Author: chapuni
Date: Thu Oct  7 02:21:04 2010
New Revision: 115910

URL: http://llvm.org/viewvc/llvm-project?rev=115910&view=rev
Log:
Minor cosmetic change: fix DOSish \r\n.

Modified:
    llvm/trunk/lib/MC/WinCOFFStreamer.cpp

Modified: llvm/trunk/lib/MC/WinCOFFStreamer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/WinCOFFStreamer.cpp?rev=115910&r1=115909&r2=115910&view=diff
==============================================================================
--- llvm/trunk/lib/MC/WinCOFFStreamer.cpp (original)
+++ llvm/trunk/lib/MC/WinCOFFStreamer.cpp Thu Oct  7 02:21:04 2010
@@ -162,10 +162,10 @@
   // don't really even do.
 
   if (Value->getKind() != MCExpr::SymbolRef) {
-    // TODO: This is exactly the same as MachOStreamer. Consider merging into
-    // MCObjectStreamer.
-    getAssembler().getOrCreateSymbolData(*Symbol);
-    AddValueSymbols(Value);
+    // TODO: This is exactly the same as MachOStreamer. Consider merging into
+    // MCObjectStreamer.
+    getAssembler().getOrCreateSymbolData(*Symbol);
+    AddValueSymbols(Value);
     Symbol->setVariableValue(Value);
   } else {
     // FIXME: This is a horrible way to do this :(. This should really be





More information about the llvm-commits mailing list