diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-18 18:22:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-18 18:22:23 +0000 |
commit | 2284ac9ec80299fcdefae9a2787cf85105a0f203 (patch) | |
tree | e09bffb2f9fa50ae8f23ebe54fa49911923cc3f6 /lib/CodeGen/CodeGenFunction.h | |
parent | a85e7154e4424b97ce6e5d1c2704690d16bfd07e (diff) |
Debug info bug fix, function start wasn't getting generated correctly
for Obj-C methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index c0a5a44b69..d57efa94f5 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -184,7 +184,8 @@ public: llvm::Function *Fn); void StartFunction(const Decl *D, QualType RetTy, llvm::Function *Fn, - const FunctionArgList &Args); + const FunctionArgList &Args, + SourceLocation StartLoc); void FinishFunction(SourceLocation EndLoc=SourceLocation()); /// EmitFunctionProlog - Emit the target specific LLVM code to load |