diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-06-19 23:43:04 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-19 17:43:04 -0600 |
commit | 5a77b5f30e8856b764d6ef357db04e8167419cb1 (patch) | |
tree | bb634f110cf068a3f100deb5c1c4cd7f3071e452 | |
parent | 4ef873c2618ffb051d1f42ca974159c5bc31460f (diff) | |
download | gcc-5a77b5f30e8856b764d6ef357db04e8167419cb1.zip gcc-5a77b5f30e8856b764d6ef357db04e8167419cb1.tar.gz gcc-5a77b5f30e8856b764d6ef357db04e8167419cb1.tar.bz2 |
i386.h (output_int_conditional_move): Declare.
* i386.h (output_int_conditional_move): Declare.
(output_fp_conditional_move): Likewise.
From-SVN: r20625
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e196b654..30dffcb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Sat Jun 20 00:36:16 1998 Jeffrey A Law (law@cygnus.com) + * i386.h (output_int_conditional_move): Declare. + (output_fp_conditional_move): Likewise. + * optabs.c (init_traps): Put prototype inside a suitable #ifdef. Sat Jun 20 00:27:40 1998 Graham <grahams@rcp.co.uk> diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 759e5c1..5d3c4fa 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -2769,6 +2769,8 @@ extern int is_fp_dest (); extern int is_fp_store (); extern int agi_dependent (); extern int reg_mentioned_in_mem (); +extern char *output_int_conditional_move (); +extern char *output_fp_conditional_move (); #ifdef NOTYET extern struct rtx_def *copy_all_rtx (); |