diff options
author | Chris Lattner <sabre@nondot.org> | 2006-07-18 21:48:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-07-18 21:48:57 +0000 |
commit | 21ba23d0d88cff57dcdf104cd6914dabcbc68131 (patch) | |
tree | 0e919aa4d5e30dc41be4c499a6e16f6b4b8a0676 | |
parent | 1b629444e77c21e41985a61170fc0572ff465e25 (diff) | |
download | external_llvm-21ba23d0d88cff57dcdf104cd6914dabcbc68131.zip external_llvm-21ba23d0d88cff57dcdf104cd6914dabcbc68131.tar.gz external_llvm-21ba23d0d88cff57dcdf104cd6914dabcbc68131.tar.bz2 |
silence warnings in a release build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29189 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp index c6f5075..7b97646 100644 --- a/lib/Transforms/Utils/InlineFunction.cpp +++ b/lib/Transforms/Utils/InlineFunction.cpp @@ -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); |