commit | cd3d6e4815bb5cc6b3e21ed62b8561eec8fbfd37 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Jul 24 20:27:11 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Jul 24 20:27:11 2009 +0000 |
tree | e8bc70e3f97195aaccc6ac7793793e3154d84dcc | |
parent | 224957eaed1f5d3c5f496e79adc2c197372bd5c6 [diff] |
fix some predicates git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76999 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp index b32be1d..3edbe93 100644 --- a/lib/Target/TargetAsmInfo.cpp +++ b/lib/Target/TargetAsmInfo.cpp
@@ -341,7 +341,7 @@ if (Kind == SectionKind::Text) return getTextSection(); - if (isBSS(Kind)) + if (Kind == SectionKind::BSS) if (const Section *S = getBSSSection_()) return S;