diff options
author | Devang Patel <dpatel@apple.com> | 2010-08-10 17:53:33 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-08-10 17:53:33 +0000 |
commit | 25c2c8fb9309050612009a6571e2660e75531348 (patch) | |
tree | d57ba46aeba697acab9e6927ab31a081c4e19a1d /lib/CodeGen/CodeGenFunction.h | |
parent | 9d5600a8349cdda4e4971ebbbf7aa15a9da8bba7 (diff) |
Simplify code and add comments, in code that generate debug info for constant integer globals, based on Chris's feedback.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110694 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 e0673d9917..325940d245 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1373,7 +1373,7 @@ public: LValue EmitStmtExprLValue(const StmtExpr *E); LValue EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E); LValue EmitObjCSelectorLValue(const ObjCSelectorExpr *E); - void EmitDeclRefExprDbgValue(const DeclRefExpr *E, const APValue &AV); + void EmitDeclRefExprDbgValue(const DeclRefExpr *E, llvm::ConstantInt *Init); //===--------------------------------------------------------------------===// // Scalar Expression Emission //===--------------------------------------------------------------------===// |