[Openmp-commits] [openmp] r299428 - Test check-in, comment changed

Olga Malysheva via Openmp-commits openmp-commits at lists.llvm.org
Tue Apr 4 05:56:57 PDT 2017


Author: omalyshe
Date: Tue Apr  4 07:56:55 2017
New Revision: 299428

URL: http://llvm.org/viewvc/llvm-project?rev=299428&view=rev
Log:
Test check-in, comment changed

Modified:
    openmp/trunk/runtime/src/kmp.h

Modified: openmp/trunk/runtime/src/kmp.h
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp.h?rev=299428&r1=299427&r2=299428&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp.h (original)
+++ openmp/trunk/runtime/src/kmp.h Tue Apr  4 07:56:55 2017
@@ -38,7 +38,8 @@
 #ifdef BUILD_TIED_TASK_STACK
 #define TASK_STACK_EMPTY         0  // entries when the stack is empty
 
-#define TASK_STACK_BLOCK_BITS    5  // Used to define TASK_STACK_SIZE and TASK_STACK_MASK
+// Used to define TASK_STACK_SIZE and TASK_STACK_MASK
+#define TASK_STACK_BLOCK_BITS    5
 #define TASK_STACK_BLOCK_SIZE    ( 1 << TASK_STACK_BLOCK_BITS ) // Number of entries in each task stack array
 #define TASK_STACK_INDEX_MASK    ( TASK_STACK_BLOCK_SIZE - 1 )  // Mask for determining index into stack block
 #endif // BUILD_TIED_TASK_STACK




More information about the Openmp-commits mailing list