mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
Fix (bogus) possibly uninitialized warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f47d9c28d9
commit
9783301b9d
@ -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
Block a user