diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-08-13 23:30:21 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-08-13 23:30:21 +0000 |
commit | fdf229eda95a542fc34d5182e1a91a22789ba122 (patch) | |
tree | 08f88c07f62f402320663b559c9f558a75849877 /lib/Target/TargetAsmInfo.cpp | |
parent | 0e275dc53880a7f14f8b8c83cc6e0290a215492d (diff) | |
download | external_llvm-fdf229eda95a542fc34d5182e1a91a22789ba122.tar.gz external_llvm-fdf229eda95a542fc34d5182e1a91a22789ba122.tar.bz2 external_llvm-fdf229eda95a542fc34d5182e1a91a22789ba122.zip |
Remove HasCrazyBSS and add a flag in TAI to indicate that '.section'
must be emitted for PowerPC-Linux '.bss' section
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78958 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetAsmInfo.cpp')
-rw-r--r-- | lib/Target/TargetAsmInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp index 253d72c359..20a584916f 100644 --- a/lib/Target/TargetAsmInfo.cpp +++ b/lib/Target/TargetAsmInfo.cpp @@ -50,6 +50,7 @@ TargetAsmInfo::TargetAsmInfo() { Data32bitsDirective = "\t.long\t"; Data64bitsDirective = "\t.quad\t"; SunStyleELFSectionSwitchSyntax = false; + UsesELFSectionDirectiveForBSS = false; AlignDirective = "\t.align\t"; AlignmentIsInBytes = true; TextAlignFillValue = 0; |