mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
no brackets for nasm indirect jumps
This commit is contained in:
parent
50a46abdd9
commit
ade76cd4ab
1 changed files with 2 additions and 2 deletions
|
|
@ -1032,10 +1032,10 @@ SECTION _DATA public align=16 class=DATA use32 flat
|
||||||
#define B_REGDB(d, b) BYTE_PTR [b + d]
|
#define B_REGDB(d, b) BYTE_PTR [b + d]
|
||||||
|
|
||||||
/* Variable indirect: */
|
/* Variable indirect: */
|
||||||
#define VARINDIRECT(var) [var]
|
#define VARINDIRECT(var) var
|
||||||
|
|
||||||
/* Use register contents as jump/call target: */
|
/* Use register contents as jump/call target: */
|
||||||
#define CODEPTR(reg) [reg]
|
#define CODEPTR(reg) reg
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Redefine assembler commands
|
* Redefine assembler commands
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue