From: Richard Kenner Date: Tue, 3 Aug 1993 21:33:11 +0000 (-0400) Subject: Declare code_to_optab. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c951f801eb46c7d39a1ba1f9bf7ce473edca22b;p=gcc.git Declare code_to_optab. From-SVN: r5061 --- diff --git a/gcc/expr.h b/gcc/expr.h index 314ab5218b1..6250247ffe9 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -330,6 +330,9 @@ extern enum insn_code fixtab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2]; extern enum insn_code fixtrunctab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2]; extern enum insn_code floattab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2]; +/* Contains the optab used for each rtx code. */ +extern optab code_to_optab[NUM_RTX_CODE + 1]; + /* Passed to expand_binop and expand_unop to say which options to try to use if the requested operation can't be open-coded on the requisite mode. Either OPTAB_LIB or OPTAB_LIB_WIDEN says try using a library call.