Skip to content

Commit 29622a9

Browse files
committed
format
1 parent 710eccb commit 29622a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler-rt/test/asan/TestCases/disable_fake_stack.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
volatile uintptr_t saved;
99

1010
ATTRIBUTE_NOINLINE bool IsOnRealStack(uintptr_t caller_frame) {
11-
uintptr_t this_frame = reinterpret_cast<uintptr_t>(__builtin_frame_address(0));
11+
uintptr_t this_frame =
12+
reinterpret_cast<uintptr_t>(__builtin_frame_address(0));
1213
return this_frame <= saved && saved <= caller_frame;
1314
}
1415

0 commit comments

Comments
 (0)