internal/cabi: support arch 386

This commit is contained in:
visualfc
2025-08-19 15:01:35 +08:00
parent 04bb3eb5a9
commit fd0b2ff72d
11 changed files with 294 additions and 77 deletions

View File

@@ -1,7 +1,11 @@
struct empty {
};
struct empty demo1(struct empty a) {
struct empty demo0(struct empty a) {
return a;
}
struct empty demo1(struct empty a, int v) {
return a;
}