Silence gcc warning.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69541 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index 45f96d3..91e8695 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -836,7 +836,7 @@
       
       // Either we've emitted all the call args, or we have a call to a 
       // variadic function.
-      assert(Arg == ArgEnd || CallArgTypeInfo->isVariadic() && 
+      assert((Arg == ArgEnd || CallArgTypeInfo->isVariadic()) && 
              "Extra arguments in non-variadic function!");
       
     }