brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · ed0e3b3 Raw
8 lines · c
1int __attribute__((pascal)) 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