diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-06 18:29:37 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-06 18:29:37 +0000 |
commit | 6c0aa5ff6e6253db0f993053599e2a52b5b93b2d (patch) | |
tree | e25f7c9874644f6ab82f858a2da4aa0cee4c6626 /lib/CodeGen/CodeGenFunction.h | |
parent | 744d90bfe2a43847764a707b1bee7ef1e30ad5f2 (diff) |
CUDA: IR generation support for kernel call expressions
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 9a18d3367b..e53ed30256 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2076,6 +2076,9 @@ public: const CXXMethodDecl *MD, ReturnValueSlot ReturnValue); + RValue EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E, + ReturnValueSlot ReturnValue); + RValue EmitBuiltinExpr(const FunctionDecl *FD, unsigned BuiltinID, const CallExpr *E); |