Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / c / calling-conventions / sysv_abi.c
blob309b2624d0b6e45e755331b652c12981b3c9ee3b
1 int __attribute__((sysv_abi)) func(int a, int b, int c, int d) {
2 return a + b + c + d;
5 int main() {
6 return func(1, 2, 3, 4); // break here