Initialize some pointers to quiet the compiler (when doing build_gcc

builds).

llvm-svn: 31694
This commit is contained in:
Bill Wendling 2006-11-12 11:10:39 +00:00
parent 5b9506439a
commit ad75361d42
1 changed files with 2 additions and 2 deletions

View File

@ -2666,8 +2666,8 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
CHECK_FOR_ERROR
}
| OptTailCall OptCallingConv TypesV ValueRef '(' ValueRefListE ')' {
const PointerType *PFTy;
const FunctionType *Ty;
const PointerType *PFTy = 0;
const FunctionType *Ty = 0;
if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
!(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {