h8300.c (os_task): Make it static.
authorKazu Hirata <kazu@hxi.com>
Sun, 3 Feb 2002 01:24:11 +0000 (01:24 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sun, 3 Feb 2002 01:24:11 +0000 (01:24 +0000)
* config/h8300/h8300.c (os_task): Make it static.
(monitor): Likewise.
(pragma_saveall): Likewise.

From-SVN: r49452

gcc/ChangeLog
gcc/config/h8300/h8300.c

index 0057ca74666ee9dff046d627ec4b50ea7027ae2c..d2cbe5590dbb33cddd13bcd64ad1e1eebc42a4da 100644 (file)
@@ -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
index 13fc17ec1b949cdf0be3a2cfde1f4ae218e95d09..c875f454df27476dca2ffba39641b65ff4f32445 100644 (file)
@@ -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" };