android_mt6572_jiabo/external/compiler-rt/test/ubsan/TestCases/Misc/unreachable.cpp
2025-09-05 16:56:03 +08:00

6 lines
244 B
C++

// RUN: %clangxx -fsanitize=unreachable %s -O3 -o %t && not %run %t 2>&1 | FileCheck %s
int main(int, char **argv) {
// CHECK: unreachable.cpp:5:3: runtime error: execution reached a __builtin_unreachable() call
__builtin_unreachable();
}