OSDN Git Service

* config/mn10300/mn10300.h (CONDITIONAL_REGISTER_USAGE): Declare
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Aug 2001 23:53:56 +0000 (23:53 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Aug 2001 23:53:56 +0000 (23:53 +0000)
variable I locally, instead of expecting a declaration in the
calling context.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44617 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mn10300/mn10300.h

index 65f73d0..b421705 100644 (file)
@@ -1,3 +1,9 @@
+2001-08-03  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/mn10300/mn10300.h (CONDITIONAL_REGISTER_USAGE): Declare
+       variable I locally, instead of expecting a declaration in the
+       calling context.
+
 2001-08-03  Richard Henderson  <rth@redhat.com>
 
        * except.c (collect_one_action_chain): Add an explicit cleanup
index 7835c0f..63fef60 100644 (file)
@@ -189,6 +189,8 @@ extern int target_flags;
 
 #define CONDITIONAL_REGISTER_USAGE \
 {                                              \
+  unsigned int i;                              \
+                                               \
   if (!TARGET_AM33)                            \
     {                                          \
       for (i = FIRST_EXTENDED_REGNUM;          \