brintos

brintos / llvm-project-archived public Read only

0
0
Text · 349 B · 7f42c50 Raw
16 lines · cpp
1// Purpose:2//    Check that \DexUnreachable has no effect if the command line is never3//    stepped on.4//5// UNSUPPORTED: system-darwin6//7// RUN: %dexter_regression_test_cxx_build %s -o %t8// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s9// CHECK: unreachable.cpp:10 11int main()12{13  return 0;14  return 1; // DexUnreachable()15}16