diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-01 23:04:27 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-01 23:04:27 +0000 |
| commit | 6397051ece4b63fedd2c20bdb2a1e9912056cad7 (patch) | |
| tree | aa16a0fe018163955eddf7542f2b221675ef8071 /llvm/lib/MC/MCAsmInfoCOFF.cpp | |
| parent | b10c631f5380bc17e0694e75e797251748e33657 (diff) | |
| download | bcm5719-llvm-6397051ece4b63fedd2c20bdb2a1e9912056cad7.tar.gz bcm5719-llvm-6397051ece4b63fedd2c20bdb2a1e9912056cad7.zip | |
Don't drop alignment info on local common symbols.
- On COFF the .lcomm directive has an alignment argument.
- On ELF we fall back to .local + .comm
Based on a patch by NAKAMURA Takumi.
Fixes PR9337, PR9483 and PR10128.
llvm-svn: 138976
Diffstat (limited to 'llvm/lib/MC/MCAsmInfoCOFF.cpp')
| -rw-r--r-- | llvm/lib/MC/MCAsmInfoCOFF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfoCOFF.cpp b/llvm/lib/MC/MCAsmInfoCOFF.cpp index 7fc7d7abb23..cf6026b4ef8 100644 --- a/llvm/lib/MC/MCAsmInfoCOFF.cpp +++ b/llvm/lib/MC/MCAsmInfoCOFF.cpp @@ -19,7 +19,7 @@ using namespace llvm; MCAsmInfoCOFF::MCAsmInfoCOFF() { GlobalPrefix = "_"; COMMDirectiveAlignmentIsInBytes = false; - HasLCOMMDirective = true; + LCOMMDirectiveType = LCOMM::ByteAlignment; HasDotTypeDotSizeDirective = false; HasSingleParameterDotFile = false; PrivateGlobalPrefix = "L"; // Prefix for private global symbols |

