summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlga Malysheva <olga.malysheva@intel.com>2017-04-04 12:56:55 +0000
committerOlga Malysheva <olga.malysheva@intel.com>2017-04-04 12:56:55 +0000
commitc75321c16f015b15daf4c3d11052c3d26f83bbc3 (patch)
tree8b6c217b47ebf1028ce2aa63eed723bd21cb91da
parente3e3d228fe66524d3ef6166a55c0f181d55aeb1c (diff)
downloadopenmp_llvm-c75321c16f015b15daf4c3d11052c3d26f83bbc3.tar.gz
Test check-in, comment changed
git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@299428 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--runtime/src/kmp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/src/kmp.h b/runtime/src/kmp.h
index c89506e..e202a8c 100644
--- a/runtime/src/kmp.h
+++ b/runtime/src/kmp.h
@@ -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