diff options
author | Jack Carter <jcarter@mips.com> | 2013-02-12 21:29:39 +0000 |
---|---|---|
committer | Jack Carter <jcarter@mips.com> | 2013-02-12 21:29:39 +0000 |
commit | f6622bad6ba07ca9a3fde3902adc7d2075d7eb10 (patch) | |
tree | 20bd1392a6baf0096fbae2ecd1e04717c8ce710c /llvm/lib/MC/MCStreamer.cpp | |
parent | 83c74e9fad4442998a780dc7707461713615fd82 (diff) | |
download | bcm5719-llvm-f6622bad6ba07ca9a3fde3902adc7d2075d7eb10.tar.gz bcm5719-llvm-f6622bad6ba07ca9a3fde3902adc7d2075d7eb10.zip |
This patch just fixes up various llvm formatting
violations such as tabs, blanks at eol and long
lines.
llvm-svn: 175007
Diffstat (limited to 'llvm/lib/MC/MCStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCStreamer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCStreamer.cpp b/llvm/lib/MC/MCStreamer.cpp index e92569b0cc4..7d79d62830f 100644 --- a/llvm/lib/MC/MCStreamer.cpp +++ b/llvm/lib/MC/MCStreamer.cpp @@ -42,7 +42,7 @@ void MCStreamer::reset() { LastSymbol = 0; const MCSection *section = NULL; SectionStack.clear(); - SectionStack.push_back(std::make_pair(section, section)); + SectionStack.push_back(std::make_pair(section, section)); } const MCExpr *MCStreamer::BuildSymbolDiff(MCContext &Context, @@ -104,7 +104,7 @@ void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size, /// EmitULEB128Value - Special case of EmitULEB128Value that avoids the /// client having to pass in a MCExpr for constant integers. void MCStreamer::EmitULEB128IntValue(uint64_t Value, unsigned Padding, - unsigned AddrSpace) { + unsigned AddrSpace) { SmallString<128> Tmp; raw_svector_ostream OSE(Tmp); encodeULEB128(Value, OSE, Padding); |