diff options
author | Anders Carlsson <andersca@mac.com> | 2007-12-09 23:17:02 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-12-09 23:17:02 +0000 |
commit | 564f1de67d7ba43646b8740db86d6269e3dfbe0b (patch) | |
tree | d68f3f7d0941c3b9c171cc743552beec49699a17 /CodeGen/CodeGenFunction.h | |
parent | 6e4ab61300e77f3cc303046c0107b8a961d7dc66 (diff) |
Move target specific builtin IDs to TargetBuiltins.h so that they can be used by CGBuiltin.cpp
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44748 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 0c66b50ada..6ae256d438 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -388,6 +388,9 @@ public: RValue EmitCallExpr(llvm::Value *Callee, const CallExpr *E); RValue EmitBuiltinExpr(unsigned BuiltinID, const CallExpr *E); + llvm::Value *EmitX86BuiltinExpr(unsigned BuiltinID, const CallExpr *E); + llvm::Value *EmitPPCBuiltinExpr(unsigned BuiltinID, const CallExpr *E); + llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); //===--------------------------------------------------------------------===// |