mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 01:40:08 +01: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]
|
||||
|
||||
/* Variable indirect: */
|
||||
#define VARINDIRECT(var) [var]
|
||||
#define VARINDIRECT(var) var
|
||||
|
||||
/* Use register contents as jump/call target: */
|
||||
#define CODEPTR(reg) [reg]
|
||||
#define CODEPTR(reg) reg
|
||||
|
||||
/*
|
||||
* Redefine assembler commands
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue