diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-21 17:25:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-21 17:25:13 +0000 |
commit | 1010c21e4ef2580167d1d42989eca1bff859d346 (patch) | |
tree | 6b2bdb77175a8baab05a77a624ff5d3f0f7c4c0e | |
parent | da6c240423d050224acf8ce6d675a630978c4225 (diff) |
fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76587 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/TargetAsmInfo.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp index 5b7ddbfa4a..fc8d58abfc 100644 --- a/lib/Target/TargetAsmInfo.cpp +++ b/lib/Target/TargetAsmInfo.cpp @@ -251,34 +251,34 @@ TargetAsmInfo::SectionFlagsForGlobal(const GlobalValue *GV, if (GV) { SectionKind::Kind Kind = SectionKindForGlobal(GV); switch (Kind) { - case SectionKind::Text: + case SectionKind::Text: Flags |= SectionFlags::Code; break; - case SectionKind::ThreadData: - case SectionKind::ThreadBSS: + case SectionKind::ThreadData: + case SectionKind::ThreadBSS: Flags |= SectionFlags::TLS; // FALLS THROUGH - case SectionKind::Data: - case SectionKind::DataRel: - case SectionKind::DataRelLocal: - case SectionKind::DataRelRO: - case SectionKind::DataRelROLocal: - case SectionKind::BSS: + case SectionKind::Data: + case SectionKind::DataRel: + case SectionKind::DataRelLocal: + case SectionKind::DataRelRO: + case SectionKind::DataRelROLocal: + case SectionKind::BSS: Flags |= SectionFlags::Writeable; break; - case SectionKind::ROData: - case SectionKind::RODataMergeStr: - case SectionKind::RODataMergeConst: + case SectionKind::ROData: + case SectionKind::RODataMergeStr: + case SectionKind::RODataMergeConst: // No additional flags here break; - case SectionKind::SmallData: - case SectionKind::SmallBSS: + case SectionKind::SmallData: + case SectionKind::SmallBSS: Flags |= SectionFlags::Writeable; // FALLS THROUGH - case SectionKind::SmallROData: + case SectionKind::SmallROData: Flags |= SectionFlags::Small; break; - default: + default: llvm_unreachable("Unexpected section kind!"); } |