summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-10-07 07:21:04 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-10-07 07:21:04 +0000
commit86c3647ddfa8c39ed5d9eba9f2547544270c7bde (patch)
tree7fb8044068d395166da7538a62396f3cc26c6e01
parentb5814a3c152bbb7097a6d90168ce6eabde788c60 (diff)
downloadllvm-86c3647ddfa8c39ed5d9eba9f2547544270c7bde.tar.gz
llvm-86c3647ddfa8c39ed5d9eba9f2547544270c7bde.tar.bz2
llvm-86c3647ddfa8c39ed5d9eba9f2547544270c7bde.tar.xz
Minor cosmetic change: fix DOSish \r\n.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115910 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/MC/WinCOFFStreamer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/MC/WinCOFFStreamer.cpp b/lib/MC/WinCOFFStreamer.cpp
index 6afa6db40f..a42d7b46e5 100644
--- a/lib/MC/WinCOFFStreamer.cpp
+++ b/lib/MC/WinCOFFStreamer.cpp
@@ -162,10 +162,10 @@ void WinCOFFStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
// 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