vc4: Drop the dead QIR_PACK() macro.

This isn't used since we switched to using the dst.pack field instead of
custom instructions.
This commit is contained in:
Eric Anholt 2016-06-25 19:39:05 -07:00
parent 5c92c21369
commit eaa53f80d9

View file

@ -585,14 +585,6 @@ qir_##name(struct vc4_compile *c, struct qreg a, struct qreg b) \
return inst; \
}
#define QIR_PACK(name) \
static inline struct qreg \
qir_##name(struct vc4_compile *c, struct qreg dest, struct qreg a) \
{ \
qir_emit_nodef(c, qir_inst(QOP_##name, dest, a, c->undef)); \
return dest; \
}
#define QIR_PAYLOAD(name) \
static inline struct qreg \
qir_##name(struct vc4_compile *c) \