diff options
author | Devang Patel <dpatel@apple.com> | 2011-03-02 19:11:22 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-03-02 19:11:22 +0000 |
commit | 810b07ccf7b19f532402d24064df543bb0518acd (patch) | |
tree | 997a704e2f41f1bbf2821b2b7d381bf04c5e5564 /lib/CodeGen/CodeGenFunction.h | |
parent | 6ebe66417437b76e520c9a3231a0bbb30bac08cc (diff) |
Encode argument numbering in debug info so that code generator can emit them in order.
This fixes few blocks.exp regressions.
Reapply r126795 with a fix (one character change) for gdb testsuite regressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 0edd0f0128..ef006d9b20 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1609,7 +1609,7 @@ public: llvm::GlobalValue::LinkageTypes Linkage); /// EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl. - void EmitParmDecl(const VarDecl &D, llvm::Value *Arg); + void EmitParmDecl(const VarDecl &D, llvm::Value *Arg, unsigned ArgNo); /// protectFromPeepholes - Protect a value that we're intending to /// store to the side, but which will probably be used later, from |