[Openmp-commits] [PATCH] D16921: [GCC] GOMP_task: Change argument type of if_cond from int to bool

Jonas Hahnfeld via Openmp-commits openmp-commits at lists.llvm.org
Mon Feb 8 23:11:50 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL260204: [GCC] GOMP_task: Change argument type of if_cond from int to bool (authored by Hahnfeld).

Changed prior to commit:
  http://reviews.llvm.org/D16921?vs=47010&id=47298#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D16921

Files:
  openmp/trunk/runtime/src/kmp_gsupport.c

Index: openmp/trunk/runtime/src/kmp_gsupport.c
===================================================================
--- openmp/trunk/runtime/src/kmp_gsupport.c
+++ openmp/trunk/runtime/src/kmp_gsupport.c
@@ -924,7 +924,7 @@
 
 void
 xexpand(KMP_API_NAME_GOMP_TASK)(void (*func)(void *), void *data, void (*copy_func)(void *, void *),
-  long arg_size, long arg_align, int if_cond, unsigned gomp_flags)
+  long arg_size, long arg_align, bool if_cond, unsigned gomp_flags)
 {
     MKLOC(loc, "GOMP_task");
     int gtid = __kmp_entry_gtid();


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16921.47298.patch
Type: text/x-patch
Size: 539 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20160209/b7aaa797/attachment.bin>


More information about the Openmp-commits mailing list