diff options
author | Brian Paul <[email protected]> | 2000-06-14 23:11:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-06-14 23:11:11 +0000 |
commit | 5b2a619fb245d6e33dd4bc88db26a35af2b1edaa (patch) | |
tree | 28193bb21759ddf608c90bae631b17d9278c7e7d /src/mesa/x86/assyntax.h | |
parent | c3501b01d1e3c8d107ee4da79549652c26bb05bc (diff) |
moved #define of LLBL into assyntax.h file
removed spaces from all uses of LLBL macro, for FreeBSD
Diffstat (limited to 'src/mesa/x86/assyntax.h')
-rw-r--r-- | src/mesa/x86/assyntax.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/x86/assyntax.h b/src/mesa/x86/assyntax.h index 2a1034870a5..dfd1c4fe3a5 100644 --- a/src/mesa/x86/assyntax.h +++ b/src/mesa/x86/assyntax.h @@ -1645,4 +1645,12 @@ SECTION _DATA public align=16 class=DATA use32 flat #define XORPS(a, b) xorps P_ARG2(a, b) +/* Added by BrianP for FreeBSD (per David Dawes) */ +#if !defined(NASM_ASSEMBLER) && !defined(MASM_ASSEMBLER) +#define LLBL(a) CONCAT(.L,a) +#else +#define LLBL(a) a +#endif + + #endif /* __ASSYNTAX_H__ */ |