This commit is contained in:
2026-03-24 22:59:06 +01:00
parent 53aff71bbd
commit 7ba493dec6

View File

@@ -752,29 +752,17 @@ all_done:
* between them.
*/
asm (
asm (
#if defined(PIC)
"popl %%ebx\n\t"
#endif
#if !defined(BIG_OPT)
"popl %%ebp\n\t"
"popl %%ebx\n\t"
#endif
"jmp *%0"
: /* no outputs */
:"m" (_GlideRoot.curGC->archDispatchProcs.triSetupProc)
#if defined (PIC) || !defined (BIG_OPT)
:
"jmp *%0"
:
: "m" (_GlideRoot.curGC->archDispatchProcs.triSetupProc)
#if defined(PIC)
: "ebx"
#endif
#if defined (PIC)
"ebx"
#endif
#if defined (PIC) && !defined (BIG_OPT)
,
#endif
#if !defined(BIG_OPT)
"ebp"
#endif
);
);
#endif
#endif
#undef FN_NAME