From 1768fabfbae60202ba497b98dd9be9eb09bb2e20 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sun, 19 Apr 2009 20:21:56 +0000 Subject: [PATCH] Silence gcc warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69541 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CodeGenFunction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 45f96d33b7..91e8695dba 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -836,7 +836,7 @@ private: // 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!"); } -- 2.40.0