forked from OSchip/llvm-project
Fix (bogus) possibly uninitialized warning
llvm-svn: 6634
This commit is contained in:
parent
27afe52c4c
commit
d295d99664
|
@ -508,7 +508,7 @@ void Verifier::visitIntrinsicFunctionCall(LLVMIntrinsic::ID ID, CallInst &CI) {
|
|||
Function *IF = CI.getCalledFunction();
|
||||
const FunctionType *FT = IF->getFunctionType();
|
||||
Assert1(IF->isExternal(), "Intrinsic functions should never be defined!", IF);
|
||||
unsigned NumArgs;
|
||||
unsigned NumArgs = 0;
|
||||
|
||||
switch (ID) {
|
||||
case LLVMIntrinsic::va_start:
|
||||
|
|
Loading…
Reference in New Issue