diff options
author | Olga Malysheva <olga.malysheva@intel.com> | 2017-04-04 12:56:55 +0000 |
---|---|---|
committer | Olga Malysheva <olga.malysheva@intel.com> | 2017-04-04 12:56:55 +0000 |
commit | b7784ebdf794ed2f714a77234fd37e78134b3c12 (patch) | |
tree | 35b1458f480cb7780148b75dacebfa75345a31b8 | |
parent | 0a47edb1539f6beaef49918ee3fbd7b28456f2d8 (diff) | |
download | bcm5719-llvm-b7784ebdf794ed2f714a77234fd37e78134b3c12.tar.gz bcm5719-llvm-b7784ebdf794ed2f714a77234fd37e78134b3c12.zip |
Test check-in, comment changed
llvm-svn: 299428
-rw-r--r-- | openmp/runtime/src/kmp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openmp/runtime/src/kmp.h b/openmp/runtime/src/kmp.h index c89506e9254..e202a8cfde1 100644 --- a/openmp/runtime/src/kmp.h +++ b/openmp/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 |