diff options
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/test/asan/TestCases/zero_page_pc.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/zero_page_pc.cc b/compiler-rt/test/asan/TestCases/zero_page_pc.cc index 53615dd5841..ae741e63e37 100644 --- a/compiler-rt/test/asan/TestCases/zero_page_pc.cc +++ b/compiler-rt/test/asan/TestCases/zero_page_pc.cc @@ -7,8 +7,8 @@ typedef void void_f(); int main() { - void_f *func = (void_f *)0x7; + void_f *func = (void_f *)0x4; func(); - // CHECK: {{AddressSanitizer: SEGV.*(pc.*0007)}} + // CHECK: {{AddressSanitizer: SEGV.*(pc.*0004)}} return 0; } |