diff options
author | Tom Wood <wood@gnu.org> | 1992-04-26 12:31:30 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1992-04-26 12:31:30 +0000 |
commit | 8cbe291798c84e97225c6fdca575187cb1e61a57 (patch) | |
tree | e3dcbc5815357645ac91280741783396b42b00b4 /gcc/expr.h | |
parent | af2682ef56012ce8df2dfefe0e9c98105e83e2c3 (diff) | |
download | gcc-8cbe291798c84e97225c6fdca575187cb1e61a57.zip gcc-8cbe291798c84e97225c6fdca575187cb1e61a57.tar.gz gcc-8cbe291798c84e97225c6fdca575187cb1e61a57.tar.bz2 |
*** empty log message ***
From-SVN: r837
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -282,7 +282,7 @@ extern rtx (*const insn_gen_function[]) (); extern optab add_optab; extern optab sub_optab; -extern optab smul_optab; /* Signed multiply */ +extern optab smul_optab; /* Signed and floating-point multiply */ extern optab smul_widen_optab; /* Signed multiply with result one machine mode wider than args */ extern optab umul_widen_optab; @@ -303,8 +303,8 @@ extern optab lshl_optab; /* Logical shift left */ extern optab lshr_optab; /* Logical shift right */ extern optab rotl_optab; /* Rotate left */ extern optab rotr_optab; /* Rotate right */ -extern optab smin_optab; /* Signed minimum value */ -extern optab smax_optab; /* Signed maximum value */ +extern optab smin_optab; /* Signed and floating-point minimum value */ +extern optab smax_optab; /* Signed and floating-point maximum value */ extern optab umin_optab; /* Unsigned minimum value */ extern optab umax_optab; /* Unsigned maximum value */ |