diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-13 20:25:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-13 20:25:53 +0000 |
commit | d07eb3b5b47c22abd0db7b5d0b377c9db0fd7c34 (patch) | |
tree | 53e0d8a993b67f1cf90e7e75b38ee3514e7a8a67 /CodeGen/CodeGenFunction.h | |
parent | d0d560a0975c2f8c4a9559e84ec556b6a0baf7df (diff) |
implement codegen support for implicit casts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39831 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index 7a07f252bb..7479743ec3 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -313,7 +313,7 @@ public: RValue EmitFloatingLiteral(const FloatingLiteral *E); RValue EmitCharacterLiteral(const CharacterLiteral *E); - RValue EmitCastExpr(const CastExpr *E); + RValue EmitCastExpr(const Expr *Op, QualType DestTy); RValue EmitCallExpr(const CallExpr *E); RValue EmitArraySubscriptExprRV(const ArraySubscriptExpr *E); |