We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef70094 commit ebbec8dCopy full SHA for ebbec8d
1 file changed
rcc.c
@@ -2610,7 +2610,11 @@ int main(int argc, const char **argv)
2610
atexit(rcc_atexit_destructors);
2611
}
2612
2613
+#if defined(_MSC_VER) && defined(IR_TARGET_X86)
2614
+ ret = ir_call_with_aligned_stack(func, jit_argc, jit_argv);
2615
+#else
2616
ret = func(jit_argc, jit_argv);
2617
+#endif
2618
2619
if ((rcc->c_flags & C_DUMP_TIME) && rcc_atexit_start) {
2620
double t = rcc_time();
0 commit comments