mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qfcc] Mark opcode_get as pure
Because gcc told me to :P
This commit is contained in:
parent
da210db720
commit
cf8061c4d3
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
|||
typedef struct instruction_s instruction_t;
|
||||
|
||||
struct operand_s;
|
||||
pr_ushort_t opcode_get (instruction_t *inst);
|
||||
pr_ushort_t opcode_get (instruction_t *inst) __attribute__((pure));
|
||||
instruction_t *opcode_find (const char *name, struct operand_s *op_a,
|
||||
struct operand_s *op_b, struct operand_s *op_c);
|
||||
void opcode_init (void);
|
||||
|
|
Loading…
Reference in a new issue