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:
Bill Wendling
2013-04-18 21:45:04 +00:00
parent fcba22decb
commit a88a016f2d
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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 {