diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-03 01:24:11 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-03 01:24:11 +0000 |
| commit | 8ba450adf8babef44982dcd655ff62a290fc7789 (patch) | |
| tree | 9df4aec3b21740fb3dfd88bbf38ca9550133e44a | |
| parent | 784642299e9c32913dfc9ef235bc0bc801e30540 (diff) | |
| download | ppe42-gcc-8ba450adf8babef44982dcd655ff62a290fc7789.tar.gz ppe42-gcc-8ba450adf8babef44982dcd655ff62a290fc7789.zip | |
* config/h8300/h8300.c (os_task): Make it static.
(monitor): Likewise.
(pragma_saveall): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49452 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/h8300/h8300.c | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0057ca74666..d2cbe5590db 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-02-02 Kazu Hirata <kazu@hxi.com> + + * config/h8300/h8300.c (os_task): Make it static. + (monitor): Likewise. + (pragma_saveall): Likewise. + 2002-02-02 Alexandre Oliva <aoliva@redhat.com> * config/sh/sh.md (ic_invalidate_line): Make sure the immediate diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 13fc17ec1b9..c875f454df2 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -68,18 +68,18 @@ int cpu_type; /* True if the current function is an interrupt handler (either via #pragma or an attribute specification). */ -int interrupt_handler; +static int interrupt_handler; /* True if the current function is an OS Task (via an attribute specification). */ -int os_task; +static int os_task; /* True if the current function is a monitor (via an attribute specification). */ -int monitor; +static int monitor; /* True if a #pragma saveall has been seen for the current function. */ -int pragma_saveall; +static int pragma_saveall; static const char *const names_big[] = { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7" }; |

