forked from OSchip/llvm-project
[GWP-ASan] Change crash handler constant.
Constant is too large to fit into uintptr_t on 32-bit.
This commit is contained in:
parent
40efa65de8
commit
0c3b2986ac
|
@ -105,7 +105,7 @@ protected:
|
|||
};
|
||||
|
||||
uintptr_t CrashHandlerAPITest::BacktraceConstants[kNumBacktraceConstants] = {
|
||||
0xdeadbeef, 0xdeadc0de, 0xbadc0ffee, 0xcafef00d};
|
||||
0xdeadbeef, 0xdeadc0de, 0xbadc0ffe, 0xcafef00d};
|
||||
|
||||
TEST_F(CrashHandlerAPITest, PointerNotMine) {
|
||||
uintptr_t UnknownPtr = reinterpret_cast<uintptr_t>(&State);
|
||||
|
|
Loading…
Reference in New Issue