diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-09 17:34:03 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-09 17:34:03 +0000 |
commit | 6db0fb0ed3c834b6457434841df0599f27872c02 (patch) | |
tree | 326178f1a34143463c75232a4218117c8a8baf50 /gcc/optabs.c | |
parent | bf9a0db3c8ce0aeea0a5371219eebc9323066284 (diff) | |
download | gcc-6db0fb0ed3c834b6457434841df0599f27872c02.zip gcc-6db0fb0ed3c834b6457434841df0599f27872c02.tar.gz gcc-6db0fb0ed3c834b6457434841df0599f27872c02.tar.bz2 |
optabs.c (prepare_operand): Make it static.
* optabs.c (prepare_operand): Make it static.
* optabs.h: Remove the corresponding prototype.
From-SVN: r90351
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index cc0627b..cfed904 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -3197,7 +3197,7 @@ prepare_cmp_insn (rtx *px, rtx *py, enum rtx_code *pcomparison, rtx size, WIDER_MODE (UNSIGNEDP determines whether it is an unsigned conversion), and that it is accepted by the operand predicate. Return the new value. */ -rtx +static rtx prepare_operand (int icode, rtx x, int opnum, enum machine_mode mode, enum machine_mode wider_mode, int unsignedp) { |