scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 3af89ed93fc8971073678c0d480cb8ded8b560ff
parent a437e6130c7c1c4dd71633b2bc55ff29ccfc2af4
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 21 Sep 2019 11:26:37 +0200

[as-powerpc] Change pack_emit() to emit_packed()

Emit_packed() has the correct English meaning for the purpouse of
the function.

Diffstat:
Msrc/cmd/as/target/powerpc/ins.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cmd/as/target/powerpc/ins.c b/src/cmd/as/target/powerpc/ins.c @@ -112,7 +112,7 @@ moperand(void) } static void -pack_emit(unsigned long ins) +emit_packed(unsigned long ins) { char buff[4]; @@ -149,7 +149,7 @@ i_form(Op *op, Node **args) li = dst >> 2; ins = opcd<<26 | li<<2 | aa<<1 | lk; - pack_emit(ins); + emit_packed(ins); } void