bolt/deps/llvm-18.1.8/lldb/test/API/lang/c/calling-conventions/pascal.c

8 lines
146 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
int __attribute__((pascal)) func(int a, int b, int c, int d) {
return a + b + c + d;
}
int main() {
return func(1, 2, 3, 4); // break here
}