summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGDecl.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-03-03 20:13:15 +0000
committerDevang Patel <dpatel@apple.com>2011-03-03 20:13:15 +0000
commit68a1525290ebe592dfbc008a80c6e3f5121131a9 (patch)
tree8051dea9cc91107ea20992751bc2e583801d6720 /clang/lib/CodeGen/CGDecl.cpp
parent34a7ab400ea989fd81685e212979526cac239a73 (diff)
downloadbcm5719-llvm-68a1525290ebe592dfbc008a80c6e3f5121131a9.tar.gz
bcm5719-llvm-68a1525290ebe592dfbc008a80c6e3f5121131a9.zip
Encode argument numbering in debug info so that code generator can emit them in order.
This fixes few blocks.exp regressions. llvm-svn: 126960
Diffstat (limited to 'clang/lib/CodeGen/CGDecl.cpp')
-rw-r--r--clang/lib/CodeGen/CGDecl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp
index f4db01d2570..ecc0a4c2d56 100644
--- a/clang/lib/CodeGen/CGDecl.cpp
+++ b/clang/lib/CodeGen/CGDecl.cpp
@@ -1000,7 +1000,8 @@ void CodeGenFunction::EmitAutoVarCleanups(const AutoVarEmission &emission) {
/// Emit an alloca (or GlobalValue depending on target)
/// for the specified parameter and set up LocalDeclMap.
-void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg) {
+void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg,
+ unsigned ArgNo) {
// FIXME: Why isn't ImplicitParamDecl a ParmVarDecl?
assert((isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) &&
"Invalid argument to EmitParmDecl");
@@ -1046,6 +1047,6 @@ void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg) {
// Emit debug info for param declaration.
if (CGDebugInfo *DI = getDebugInfo()) {
DI->setLocation(D.getLocation());
- DI->EmitDeclareOfArgVariable(&D, DeclPtr, Builder);
+ DI->EmitDeclareOfArgVariable(&D, DeclPtr, ArgNo, Builder);
}
}
OpenPOWER on IntegriCloud