brintos

brintos / llvm-project-archived public Read only

0
0
Text · 147 B · 82df064 Raw
8 lines · c
1int __attribute__((stdcall)) func(int a, int b, int c, int d) {2  return a + b + c + d;3}4 5int main() {6  return func(1, 2, 3, 4); // break here7}8