diff options
author | John McCall <rjmccall@apple.com> | 2010-10-09 01:34:31 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-10-09 01:34:31 +0000 |
commit | a2fabff4f6f4ccbbd6d237d6737720a91b6cc030 (patch) | |
tree | de92f1621f9dd4ba2fb94bb01130292a1ede0abb /clang/lib/CodeGen/CodeGenFunction.h | |
parent | f4de10d2907cf5187378407fe84d6446531e2669 (diff) | |
download | bcm5719-llvm-a2fabff4f6f4ccbbd6d237d6737720a91b6cc030.tar.gz bcm5719-llvm-a2fabff4f6f4ccbbd6d237d6737720a91b6cc030.zip |
Permit constant evaluation of const floating-point variables with
constant initializers.
llvm-svn: 116138
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 8dc8ac1e3d2..2c8b1eaebe0 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1443,7 +1443,7 @@ public: LValue EmitStmtExprLValue(const StmtExpr *E); LValue EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E); LValue EmitObjCSelectorLValue(const ObjCSelectorExpr *E); - void EmitDeclRefExprDbgValue(const DeclRefExpr *E, llvm::ConstantInt *Init); + void EmitDeclRefExprDbgValue(const DeclRefExpr *E, llvm::Constant *Init); //===--------------------------------------------------------------------===// // Scalar Expression Emission //===--------------------------------------------------------------------===// |