blob: ed0e3b3735facd40f4fa45934fc7ecd066ca8c6b [file] [log] [blame]
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
}