From: Jim Wilson Date: Sat, 19 Mar 1994 22:43:50 +0000 (-0800) Subject: (expand_expr, case ABS_EXPR): Fix typo in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eedd251f1608d01afb674f50dace11523a6ebfe5;p=gcc.git (expand_expr, case ABS_EXPR): Fix typo in last change. From-SVN: r6827 --- diff --git a/gcc/expr.c b/gcc/expr.c index a169d6d885f..130d40666ad 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5103,7 +5103,7 @@ expand_expr (exp, target, tmode, modifier) else if (temp != const0_rtx) { if (bcc_gen_fctn[(int) GET_CODE (temp)] != 0) - emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (temp)]) (op0)); + emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (temp)]) (op1)); else abort (); }