mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 21:18:19 +00:00
Make the TargetIndependent flag have the right boolean value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -485,7 +485,7 @@ std::string AttributeSetNode::getAsString(bool TargetIndependent,
|
||||
std::string Str = "";
|
||||
for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
|
||||
E = AttrList.end(); I != E; ) {
|
||||
if (!TargetIndependent || !I->isStringAttribute()) {
|
||||
if (TargetIndependent || !I->isStringAttribute()) {
|
||||
Str += I->getAsString(InAttrGrp);
|
||||
if (++I != E) Str += " ";
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user