summaryrefslogtreecommitdiff
path: root/lib/MC/WinCOFFStreamer.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-04 18:34:04 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-04 18:34:04 +0000
commit506eb6df35d5b32239f0afe7eeffc65d7bb7bd63 (patch)
tree6df613fae47c0a5c38f43e8814b7cc066cb300ed /lib/MC/WinCOFFStreamer.cpp
parentb92cca222898d87bbc764fa22e805adb04ef7f13 (diff)
downloadllvm-506eb6df35d5b32239f0afe7eeffc65d7bb7bd63.tar.gz
llvm-506eb6df35d5b32239f0afe7eeffc65d7bb7bd63.tar.bz2
llvm-506eb6df35d5b32239f0afe7eeffc65d7bb7bd63.tar.xz
Use the default values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/WinCOFFStreamer.cpp')
-rw-r--r--lib/MC/WinCOFFStreamer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/MC/WinCOFFStreamer.cpp b/lib/MC/WinCOFFStreamer.cpp
index 0cd4aa21a2..445d26106a 100644
--- a/lib/MC/WinCOFFStreamer.cpp
+++ b/lib/MC/WinCOFFStreamer.cpp
@@ -128,13 +128,13 @@ void WinCOFFStreamer::InitSections(bool Force) {
// This emulates the same behavior of GNU as. This makes it easier
// to compare the output as the major sections are in the same order.
SwitchSection(getContext().getObjectFileInfo()->getTextSection());
- EmitCodeAlignment(4, 0);
+ EmitCodeAlignment(4);
SwitchSection(getContext().getObjectFileInfo()->getDataSection());
- EmitCodeAlignment(4, 0);
+ EmitCodeAlignment(4);
SwitchSection(getContext().getObjectFileInfo()->getBSSSection());
- EmitCodeAlignment(4, 0);
+ EmitCodeAlignment(4);
SwitchSection(getContext().getObjectFileInfo()->getTextSection());
}