diff options
author | Catherine Moore <clm@cygnus.com> | 1999-10-30 19:43:20 +0000 |
---|---|---|
committer | Catherine Moore <clm@gcc.gnu.org> | 1999-10-30 15:43:20 -0400 |
commit | e42ea7f9349ceb9a28c0e762f702a2afbc105539 (patch) | |
tree | ba2a5d7e2143f60ed86ab45874ae05336ad1befd /gcc | |
parent | 10e5de9f6c4574410b9585052b60ac0752e0ca40 (diff) | |
download | gcc-e42ea7f9349ceb9a28c0e762f702a2afbc105539.zip gcc-e42ea7f9349ceb9a28c0e762f702a2afbc105539.tar.gz gcc-e42ea7f9349ceb9a28c0e762f702a2afbc105539.tar.bz2 |
Revert last patch.
From-SVN: r30273
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 756d6c3..46ca0e9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sat Oct 30 14:38:04 1999 Catherine Moore <clm@cygnus.com> + + * config/i386/i386.c (ix86_cpu): Revert last patch. + * config/i386/i386.h (ix86_cpu): Ditto. + Fri Oct 29 17:00:42 1999 Jim Wilson <wilson@cygnus.com> * stor-layout.c (layout_type): When compute TYPE_SIZE_UNIT from diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 43bc4ee..0a8b1f6 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -181,7 +181,7 @@ struct machine_function #define ix86_stack_locals (current_function->machine->stack_locals) /* which cpu are we scheduling for */ -extern enum processor_type ix86_cpu; +enum processor_type ix86_cpu; /* which instruction set architecture to use. */ int ix86_arch; diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 88bed4b..ad52760 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -237,7 +237,7 @@ enum processor_type PROCESSOR_max }; -enum processor_type ix86_cpu; +extern enum processor_type ix86_cpu; extern int ix86_arch; |