diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-04 18:34:04 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-04 18:34:04 +0000 |
commit | 7b5149697539b009da398b121e9ecb675dbcc9a7 (patch) | |
tree | 924fbf9be637cb15b46997d4ed7d271247d415f1 /llvm/lib/MC/WinCOFFStreamer.cpp | |
parent | d7fcee8d8c4297731bd70e7faf2594da9048f96d (diff) | |
download | bcm5719-llvm-7b5149697539b009da398b121e9ecb675dbcc9a7.tar.gz bcm5719-llvm-7b5149697539b009da398b121e9ecb675dbcc9a7.zip |
Use the default values.
llvm-svn: 200781
Diffstat (limited to 'llvm/lib/MC/WinCOFFStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/WinCOFFStreamer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/MC/WinCOFFStreamer.cpp b/llvm/lib/MC/WinCOFFStreamer.cpp index 0cd4aa21a20..445d26106ad 100644 --- a/llvm/lib/MC/WinCOFFStreamer.cpp +++ b/llvm/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()); } |