3c1d2d79f0
Type word_t is for encoding the machine instructions. It only needs 32 bits for PowerPC. It was long (which can have 32 or 64 bits), and there was a second type quad (which was uint32_t). Switch word_t to uint32_t and replace quad with word_t. Also change valu_t and ADDR_T away from long.
10 lines
157 B
C
10 lines
157 B
C
/*
|
|
* $Source$
|
|
* $State$
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern word_t emit_hi(struct expr_t* expr, bool is_signed);
|
|
extern word_t emit_lo(struct expr_t* expr);
|