Home | History | Annotate | Download | only in Misc
      1 // RUN: %clangxx -fsanitize=unreachable %s -O3 -o %t && %run %t 2>&1 | FileCheck %s
      2 
      3 int main(int, char **argv) {
      4   // CHECK: unreachable.cpp:5:3: runtime error: execution reached a __builtin_unreachable() call
      5   __builtin_unreachable();
      6 }
      7