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/TargetLoweringObjectFile.cpp | |
parent | 0e275dc53880a7f14f8b8c83cc6e0290a215492d (diff) |
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/TargetLoweringObjectFile.cpp')
-rw-r--r-- | lib/Target/TargetLoweringObjectFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/TargetLoweringObjectFile.cpp b/lib/Target/TargetLoweringObjectFile.cpp index edc9ed3ba4..7cb87efd40 100644 --- a/lib/Target/TargetLoweringObjectFile.cpp +++ b/lib/Target/TargetLoweringObjectFile.cpp @@ -298,8 +298,8 @@ getELFSection(StringRef Section, unsigned Type, unsigned Flags, const MCSectionELF *&Entry = Map[Section]; if (Entry) return Entry; - return Entry = MCSectionELF::Create(Section, Type, Flags, Kind, HasCrazyBSS, - IsExplicit, getContext()); + return Entry = MCSectionELF::Create(Section, Type, Flags, Kind, IsExplicit, + getContext()); } void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx, |