diff options
author | Brian Paul <[email protected]> | 2008-11-12 11:01:40 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-11-12 11:06:48 -0700 |
commit | 7f15e34cfadbeb460d22f9549511694c2bd27495 (patch) | |
tree | 5cfa7d2007a4fae95f509ddf075c38021db7852e /src/gallium/auxiliary/rtasm | |
parent | a35210b516eab0c0d4a5fd988e3411a98214b9ae (diff) |
cell: fix typo in EMIT_ macro
Diffstat (limited to 'src/gallium/auxiliary/rtasm')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_ppc_spe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.h b/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.h index d6a3c02f20c..4cde080a2c9 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.h +++ b/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.h @@ -100,7 +100,7 @@ extern void spe_comment(struct spe_function *p, int rel_indent, const char *s); #endif /* RTASM_PPC_SPE_H */ #ifndef EMIT_ -#define EMIT_(name, _op) \ +#define EMIT_(_name, _op) \ extern void _name (struct spe_function *p, unsigned rT) #define EMIT_R(_name, _op) \ extern void _name (struct spe_function *p, unsigned rT, unsigned rA) |