Fix gcc -Wparentheses warning.
authorPatrik Hagglund <patrik.h.hagglund@ericsson.com>
Wed, 4 Jun 2014 11:21:11 +0000 (11:21 +0000)
committerPatrik Hagglund <patrik.h.hagglund@ericsson.com>
Wed, 4 Jun 2014 11:21:11 +0000 (11:21 +0000)
llvm-svn: 210178

llvm/lib/IR/Globals.cpp

index d5723c2..160ddc9 100644 (file)
@@ -290,7 +290,7 @@ void GlobalAlias::eraseFromParent() {
 }
 
 void GlobalAlias::setAliasee(Constant *Aliasee) {
-  assert(!Aliasee || Aliasee->getType() == getType() &&
+  assert((!Aliasee || Aliasee->getType() == getType()) &&
          "Alias and aliasee types should match!");
   setOperand(0, Aliasee);
 }