summaryrefslogtreecommitdiff
path: root/lib/ubsan/lit_tests/Misc/unreachable.cpp
blob: 5ca4e5fd8b0c08e1be10060bcfa39d1d393cb44d (plain)
1
2
3
4
5
6
// RUN: %clang -fsanitize=unreachable %s -O3 -o %t && %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();
}