silence warnings in a release build

llvm-svn: 29189
This commit is contained in:
Chris Lattner 2006-07-18 21:48:57 +00:00
parent f9bafae741
commit fea3974133
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ bool llvm::InlineFunction(CallSite CS, CallGraph *CG) {
// If we are preserving the callgraph, add edges to the stacksave/restore
// functions for the calls we insert.
CallGraphNode *StackSaveCGN, *StackRestoreCGN, *CallerNode;
CallGraphNode *StackSaveCGN = 0, *StackRestoreCGN = 0, *CallerNode = 0;
if (CG) {
StackSaveCGN = CG->getOrInsertFunction(StackSave);
StackRestoreCGN = CG->getOrInsertFunction(StackRestore);