We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710eccb commit 29622a9Copy full SHA for 29622a9
compiler-rt/test/asan/TestCases/disable_fake_stack.cpp
@@ -8,7 +8,8 @@
8
volatile uintptr_t saved;
9
10
ATTRIBUTE_NOINLINE bool IsOnRealStack(uintptr_t caller_frame) {
11
- uintptr_t this_frame = reinterpret_cast<uintptr_t>(__builtin_frame_address(0));
+ uintptr_t this_frame =
12
+ reinterpret_cast<uintptr_t>(__builtin_frame_address(0));
13
return this_frame <= saved && saved <= caller_frame;
14
}
15
0 commit comments