diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-31 04:44:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-31 04:44:06 +0000 |
commit | c5e940fa551840ecd71e8116c316c9131490f5fa (patch) | |
tree | 8f8c8e7fdfe403334889c0363525ff767e0abf09 /CodeGen/CodeGenFunction.h | |
parent | bef20ac367a09555b30d6eb3847a81ec164caf88 (diff) |
Implement codegen support for lowering "library builtins" like __builtin_isinf
to their corresponding library routines (e.g. isinf). This allows us to handle
all the stuff in macos math.h, and other stuff as it's added to *Builtins.def.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41634 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 12c227bad9..af8d80bbb2 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -324,8 +324,8 @@ public: //===--------------------------------------------------------------------===// RValue EmitCallExpr(const CallExpr *E); + RValue EmitCallExpr(llvm::Value *Callee, const CallExpr *E); RValue EmitBuiltinExpr(unsigned BuiltinID, const CallExpr *E); - RValue EmitBuiltinLibFuncExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); |