Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / symbolize_debug_argv.cpp
blobe0a2dbefdcebd8f5bc3a0137e5f3aa44a1d0d3c6
1 // RUN: %clangxx %s -g -o %t
2 // RUN: %env_tool_opts=verbosity=3 %run %t 2>&1 | FileCheck %s
3 #include <sanitizer/common_interface_defs.h>
5 int main(int argc, char **argv) {
6 // CHECK: {{(Launching Symbolizer process: .+)|(Using internal symbolizer)}}
7 __sanitizer_print_stack_trace();
8 return 0;