Fix (bogus) possibly uninitialized warning

llvm-svn: 6634
This commit is contained in:
Chris Lattner 2003-06-05 21:01:26 +00:00
parent 27afe52c4c
commit d295d99664
1 changed files with 1 additions and 1 deletions

View File

@ -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: