silence a bogus warning

llvm-svn: 22245
This commit is contained in:
Chris Lattner 2005-06-17 13:23:32 +00:00
parent 8f7da41021
commit 459a9cbe1e
1 changed files with 1 additions and 1 deletions

View File

@ -3862,7 +3862,7 @@ void ISel::EmitFastCCToFastCCTailCall(SDNode *TailCallNode) {
SDOperand Callee = TailCallNode->getOperand(1);
bool isDirect = isa<GlobalAddressSDNode>(Callee) ||
isa<ExternalSymbolSDNode>(Callee);
unsigned CalleeReg;
unsigned CalleeReg = 0;
if (!isDirect) CalleeReg = SelectExpr(Callee);
unsigned RegOp1 = 0;