mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 01:45:52 +08:00
Remove two Ada opcodes
The OP_ATR_MIN and OP_ATR_MAX constants aren't truly needed. Internally, they are converted to BINOP_MIN and BINOP_MAX. This patch removes them in favor of simple reuse. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * std-operator.def (OP_ATR_MIN, OP_ATR_MAX): Remove. * ada-lang.c (ada_binop_minmax): Update. * ada-exp.h (ada_binop_min_operation, ada_binop_max_operation): Use BINOP_MIN and BINOP_MAX.
This commit is contained in:
@ -10096,8 +10096,7 @@ ada_binop_minmax (struct type *expect_type,
|
||||
else
|
||||
{
|
||||
binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
|
||||
return value_binop (arg1, arg2,
|
||||
op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
|
||||
return value_binop (arg1, arg2, op);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user