summaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1993-08-03 21:33:11 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1993-08-03 21:33:11 +0000
commitb3f23d752658287b56441d1e5ea17297cd68128e (patch)
treeb7378f061aa1a8f0a1d9449f305fe45de35ae7f2 /gcc/expr.h
parent390fc1d2d0e7bf459273a3c20e94a5d80388179a (diff)
downloadgcc-b3f23d752658287b56441d1e5ea17297cd68128e.tar.gz
Declare code_to_optab.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5061 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r--gcc/expr.h3
1 files changed, 3 insertions, 0 deletions
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.