diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-31 04:31:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-31 04:31:45 +0000 |
commit | bef20ac367a09555b30d6eb3847a81ec164caf88 (patch) | |
tree | a8ba296714599bddc30ccdad39080fd7fcc037c7 /CodeGen/CodeGenFunction.h | |
parent | d74c15fc0a492fe3ca32cd1865d84911dd0d6e99 (diff) |
add the ability to get the llvm function corresponding to a library builtin.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41633 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index 3b8d7a20af..12c227bad9 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -325,6 +325,7 @@ public: RValue EmitCallExpr(const CallExpr *E); RValue EmitBuiltinExpr(unsigned BuiltinID, const CallExpr *E); + RValue EmitBuiltinLibFuncExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); |