diff options
author | Kostya Serebryany <kcc@google.com> | 2012-05-11 14:42:24 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2012-05-11 14:42:24 +0000 |
commit | 07c48051753fca58156a5f0421836350bc6e5de8 (patch) | |
tree | ff6846414eb9faeee8ff553a016719fe200b1f33 /compiler-rt/lib/tsan/rtl/tsan_defs.h | |
parent | 09de6ae399b91c0a7c3b33a99edc7b918eef1785 (diff) | |
download | bcm5719-llvm-07c48051753fca58156a5f0421836350bc6e5de8.tar.gz bcm5719-llvm-07c48051753fca58156a5f0421836350bc6e5de8.zip |
[tsan] run more kinds of builds as presubmit test (and fix gcc debug build)
llvm-svn: 156616
Diffstat (limited to 'compiler-rt/lib/tsan/rtl/tsan_defs.h')
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_defs.h b/compiler-rt/lib/tsan/rtl/tsan_defs.h index d2088d5f32e..77c26b4f5f1 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_defs.h +++ b/compiler-rt/lib/tsan/rtl/tsan_defs.h @@ -30,7 +30,7 @@ typedef unsigned long uptr; // NOLINT const uptr kPageSize = 4096; const int kTidBits = 16; -const int kMaxTid = 1 << kTidBits; +const unsigned kMaxTid = 1 << kTidBits; const int kClkBits = 40; #ifdef TSAN_SHADOW_COUNT |