[PATCH] D23914: [OpenCL] Make is_valid_event, create_user_event overloadable.

Alexey Bader via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 30 07:51:09 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL280097: [OpenCL] Make is_valid_event, create_user_event overloadable. (authored by bader).

Changed prior to commit:
  https://reviews.llvm.org/D23914?vs=69650&id=69682#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D23914

Files:
  cfe/trunk/lib/Headers/opencl-c.h

Index: cfe/trunk/lib/Headers/opencl-c.h
===================================================================
--- cfe/trunk/lib/Headers/opencl-c.h
+++ cfe/trunk/lib/Headers/opencl-c.h
@@ -16729,11 +16729,11 @@
 
 void __ovld release_event(clk_event_t);
 
-clk_event_t create_user_event(void);
+clk_event_t __ovld create_user_event(void);
 
 void __ovld set_user_event_status(clk_event_t e, int state);
 
-bool is_valid_event (clk_event_t event);
+bool __ovld is_valid_event (clk_event_t event);
 
 void __ovld capture_event_profiling_info(clk_event_t, clk_profiling_info, __global void* value);
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23914.69682.patch
Type: text/x-patch
Size: 595 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160830/dd547284/attachment.bin>


More information about the cfe-commits mailing list