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

Tyurin, Evgeniy via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 30 01:58:06 PDT 2016


etyurin retitled this revision from "[OpenCL] Make is_valid_event overloadable." to "[OpenCL] Make is_valid_event, create_user_event overloadable.".
etyurin updated the summary for this revision.
etyurin updated this revision to Diff 69650.
etyurin added a comment.

Applied comment from Sam.


https://reviews.llvm.org/D23914

Files:
  lib/Headers/opencl-c.h

Index: lib/Headers/opencl-c.h
===================================================================
--- lib/Headers/opencl-c.h
+++ 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.69650.patch
Type: text/x-patch
Size: 565 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160830/37f972f8/attachment-0001.bin>


More information about the cfe-commits mailing list