[Openmp-commits] [PATCH] D57017: Fixed https://reviews.llvm.org/D55078

Phabricator via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Mon Jan 21 07:32:40 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL351745: Fixed https://reviews.llvm.org/D55078 broken Fortran fixed form. (authored by achurbanov, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D57017?vs=182789&id=182794#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57017/new/

https://reviews.llvm.org/D57017

Files:
  openmp/trunk/runtime/src/include/50/omp_lib.h.var


Index: openmp/trunk/runtime/src/include/50/omp_lib.h.var
===================================================================
--- openmp/trunk/runtime/src/include/50/omp_lib.h.var
+++ openmp/trunk/runtime/src/include/50/omp_lib.h.var
@@ -136,10 +136,12 @@
       parameter(omp_pteam_mem_alloc=7)
       integer(kind=omp_allocator_kind)omp_thread_mem_alloc
       parameter(omp_thread_mem_alloc=8)
-
-      integer (kind=omp_pause_resource_kind), parameter :: omp_pause_resume = 0
-      integer (kind=omp_pause_resource_kind), parameter :: omp_pause_soft = 1
-      integer (kind=omp_pause_resource_kind), parameter :: omp_pause_hard = 2
+      integer(kind=omp_pause_resource_kind)omp_pause_resume
+      parameter(omp_pause_resume=0)
+      integer(kind=omp_pause_resource_kind)omp_pause_soft
+      parameter(omp_pause_soft=1)
+      integer(kind=omp_pause_resource_kind)omp_pause_hard
+      parameter(omp_pause_hard=2)
 
       interface
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57017.182794.patch
Type: text/x-patch
Size: 944 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20190121/f58dbd6f/attachment.bin>


More information about the Openmp-commits mailing list