diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-03 17:51:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-03 17:51:03 +0000 |
commit | 30bf3ae03f2edd9474d1ad69e7af64613367fed2 (patch) | |
tree | 9e6d64c7bd39eb238a5e29631360ba49bca60265 /CodeGen/CodeGenFunction.h | |
parent | dd652cdb7046155437eeb3dff512768f0a57369b (diff) |
implement codegen support for __builtin_types_compatible_p
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40788 91177308-0d34-0410-b5e6-96231b3b80d8
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); |