mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Make print_operand global.
This commit is contained in:
parent
8b8b42bde2
commit
cdbdf3f0eb
2 changed files with 2 additions and 1 deletions
|
@ -133,6 +133,7 @@ void sblock_add_statement (sblock_t *sblock, statement_t *statement);
|
|||
sblock_t *make_statements (struct expr_s *expr);
|
||||
void statements_count_temps (sblock_t *sblock);
|
||||
|
||||
void print_operand (operand_t *op);
|
||||
void print_statement (statement_t *s);
|
||||
void dump_dot_sblock (void *data, const char *fname);
|
||||
void dot_sblock (struct dstring_s *dstr, sblock_t *sblock, int blockno);
|
||||
|
|
|
@ -144,7 +144,7 @@ operand_string (operand_t *op)
|
|||
return ("??");
|
||||
}
|
||||
|
||||
static void
|
||||
void
|
||||
print_operand (operand_t *op)
|
||||
{
|
||||
switch (op->op_type) {
|
||||
|
|
Loading…
Reference in a new issue