diff options
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index 3235034a0b..4c79498c46 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -48,6 +48,8 @@ namespace clang { class IntegerLiteral; class FloatingLiteral; class CharacterLiteral; + class TypesCompatibleExpr; + class CastExpr; class CallExpr; class UnaryOperator; @@ -351,6 +353,7 @@ public: RValue EmitIntegerLiteral(const IntegerLiteral *E); RValue EmitFloatingLiteral(const FloatingLiteral *E); RValue EmitCharacterLiteral(const CharacterLiteral *E); + RValue EmitTypesCompatibleExpr(const TypesCompatibleExpr *E); RValue EmitCastExpr(const Expr *Op, QualType DestTy); RValue EmitCallExpr(const CallExpr *E); |