Sign in
android
/
platform
/
external
/
compiler-rt
/
fee4ccc59ae704020a3e0966e96b1eb80e54a828
/
.
/
test
/
ubsan
/
TestCases
/
Misc
/
unreachable.cpp
blob: e1206edb30d543aaf76314f45aae29bc2d6337e2 [
file
] [
log
] [
blame
]
// 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
();
}