diff options
author | John David Anglin <dave@hiauly1.hia.nrc.ca> | 2002-07-18 17:58:44 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2002-07-18 17:58:44 +0000 |
commit | f3a4e54eb00ac27db04ff04061543c28dc843525 (patch) | |
tree | 20e4a1d9d7622f912d7cbbdc575804491cd4397d | |
parent | 5be36a8f2731b1eb8c7b94e6e83ad4b783b8edca (diff) | |
download | gcc-f3a4e54eb00ac27db04ff04061543c28dc843525.zip gcc-f3a4e54eb00ac27db04ff04061543c28dc843525.tar.gz gcc-f3a4e54eb00ac27db04ff04061543c28dc843525.tar.bz2 |
* pa.c (output_deferred_plabels): Remove unused millicode enum mulU.
From-SVN: r55562
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 27839a3..b0e7ce8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-07-18 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * pa.c (output_deferred_plabels): Remove unused millicode enum mulU. + 2002-07-18 Richard Henderson <rth@redhat.com> PR optimization/7147 diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 76beee0..aa7e0ef 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -4741,10 +4741,10 @@ output_deferred_plabels (file) /* HP's millicode routines mean something special to the assembler. Keep track of which ones we have used. */ -enum millicodes { remI, remU, divI, divU, mulI, mulU, end1000 }; +enum millicodes { remI, remU, divI, divU, mulI, end1000 }; static void import_milli PARAMS ((enum millicodes)); static char imported[(int) end1000]; -static const char * const milli_names[] = {"remI", "remU", "divI", "divU", "mulI", "mulU"}; +static const char * const milli_names[] = {"remI", "remU", "divI", "divU", "mulI"}; static const char import_string[] = ".IMPORT $$....,MILLICODE"; #define MILLI_START 10 |