From: Luke Kenneth Casson Leighton Date: Sat, 10 Nov 2018 20:21:36 +0000 (+0000) Subject: whitespace X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b859405ca992bf17502acde4ede3a3b0c0266160;p=riscv-isa-sim.git whitespace --- diff --git a/riscv/sv_insn_redirect.cc b/riscv/sv_insn_redirect.cc index b82d3f0..f5fbb0d 100644 --- a/riscv/sv_insn_redirect.cc +++ b/riscv/sv_insn_redirect.cc @@ -570,13 +570,13 @@ OP_MULH_FN(_mulh , sv_sreg_t, sv_sreg_t, sv_sreg_t, int64_t, int64_t, int64_t ) LHSTYPE, RHSTYPE, RESTYPE ) \ SRESTYPE sv_proc_t::fname (SLHSTYPE const & lhs, SRHSTYPE const & rhs) \ { \ - uint8_t bitwidth = _insn->src_bitwidth; \ + uint8_t bitwidth = _insn->src_bitwidth; \ LHSTYPE vlhs = 0; \ RHSTYPE vrhs = 0; \ if (rv_int_op_prepare(lhs, rhs, vlhs, vrhs, bitwidth) || \ lhs.get_elwidth() == 0 || rhs.get_elwidth() == 0 ) { \ - RESTYPE result = ::fname(vlhs, vrhs); \ - fprintf(stderr, "%s result %lx %lx %lx\n", \ + RESTYPE result = ::fname(vlhs, vrhs); \ + fprintf(stderr, "%s result %lx %lx %lx\n", \ xstr(fname), (LHSTYPE)lhs, (RHSTYPE)rhs, (RESTYPE)result); \ return rv_int_op_finish(lhs, rhs, result, bitwidth); \ } \