asan: fix 32-bit build

llvm-svn: 240541
This commit is contained in:
Dmitry Vyukov 2015-06-24 13:27:56 +00:00
parent 110bf6da75
commit b086a70206
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ const uptr kMaxThreadStackSize = 1 << 30; // 1Gb
// Denotes fake PC values that come from JIT/JAVA/etc.
// For such PC values __tsan_symbolize_external() will be called.
const uptr kExternalPCBit = 1ULL << 60;
const u64 kExternalPCBit = 1ULL << 60;
extern const char *SanitizerToolName; // Can be changed by the tool.