diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 17:34:03 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 17:34:03 +0000 |
commit | 029a6a72be70d91946be3ba0b444a4373735f276 (patch) | |
tree | 326178f1a34143463c75232a4218117c8a8baf50 /gcc/optabs.c | |
parent | 3c01fc191b2852f46dbca3f33b2fa766b9e7e8e3 (diff) | |
download | gcc-029a6a72be70d91946be3ba0b444a4373735f276.tar.gz |
* optabs.c (prepare_operand): Make it static.
* optabs.h: Remove the corresponding prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90351 138bc75d-0d04-0410-961f-82ee72b054a4
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 cc0627b1240..cfed9040180 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) { |