diff options
author | Anders Carlsson <andersca@mac.com> | 2009-02-09 20:20:56 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-02-09 20:20:56 +0000 |
commit | 4cc1a4703363ff940b6273aeef9d96a87edeb04b (patch) | |
tree | a387712121ec65d1b68430c88be0cb6d666a2c28 /lib/CodeGen/CodeGenFunction.cpp | |
parent | fdf556936f94344d5482747403f27822cf0ae37f (diff) |
Add DidCallStackSave variable to CodeGenFunction.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index 5e005b4c55..153fcc8ec4 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -144,6 +144,7 @@ void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy, llvm::Function *Fn, const FunctionArgList &Args, SourceLocation StartLoc) { + DidCallStackSave = false; CurFuncDecl = D; FnRetTy = RetTy; CurFn = Fn; |