Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / linux / builtin_trap / main.cpp
blob0ddf865ad097fa0ec704ed5edc163e389c754751
1 void bar(int const *foo) {
2 __builtin_trap(); // Set break point at this line.
5 int main() {
6 int foo = 5;
7 bar(&foo);