/ * OutputConstant: write out a constant, after adding the appropriate * tag bits to the beginning of the number. The tag bits indicate the * type of the constant, and are given in bkod.h. */
| 128 | * type of the constant, and are given in bkod.h. |
| 129 | */ |
| 130 | void OutputConstant(FILE *outfile, const_type c) |
| 131 | { |
| 132 | int outnum = const_to_int(c); |
| 133 | fwrite(&outnum, sizeof(outnum), 1, outfile); |
| 134 | } |
| 135 | /************************************************************************/ |
| 136 | /* |
| 137 | * OutputBaseExpression: Given a base expression, first write out 1 byte |
no test coverage detected