ack/mach/powerpc/as/mach1.c
George Koehler 3c1d2d79f0 Remove type quad, use type word_t in PowerPC as.
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.
2017-01-30 16:15:02 -05:00

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);