forked from OSchip/llvm-project
8 lines
534 B
Plaintext
8 lines
534 B
Plaintext
RUN: rm -f %t-AlignmentAssumptionTest-Ubsan
|
|
RUN: %cpp_compiler -fsanitize=alignment -fno-sanitize-recover=all %S/AlignmentAssumptionTest.cpp -o %t-AlignmentAssumptionTest-Ubsan
|
|
RUN: not %run %t-AlignmentAssumptionTest-Ubsan 2>&1 | FileCheck %s
|
|
CHECK: AlignmentAssumptionTest.cpp:23:48: runtime error: assumption of 32768 byte alignment for pointer of type 'const {{.*}} *' (aka 'const unsigned char *') failed
|
|
CHECK: 0x{{.*}}: note: address is {{.*}} aligned, misalignment offset is {{.*}} byte
|
|
|
|
CHECK: Test unit written to ./crash-
|