* run.c (main): Fix parsing of args.
authorDavid Edelsohn <dje.gcc@gmail.com>
Thu, 24 Jun 1993 20:43:41 +0000 (20:43 +0000)
committerDavid Edelsohn <dje.gcc@gmail.com>
Thu, 24 Jun 1993 20:43:41 +0000 (20:43 +0000)
* compile.c (sim_resume): Fix shll insn.

sim/h8300/run.c

index 669c83f32388d755b784bc43091bc0be16beba2c..44064d81f95150cf731be387977959c123b32e38 100644 (file)
@@ -49,16 +49,12 @@ main (ac, av)
        }
   
       else 
+       name = av[i];
+    }
 
-       if (verbose)
-
-         {
-
-           name = av[i];
-
-           printf ("run %s\n", name);
+  if (verbose)
+    printf ("run %s\n", name);
 
-         }
       abfd = bfd_openr (name, "coff-h8300");
       if (abfd) 
        {
@@ -82,7 +78,6 @@ main (ac, av)
            }
        }
   
-    }
 
   return 1;
 }