projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ae030b
)
* run.c (main): Fix parsing of args.
author
David Edelsohn
<dje.gcc@gmail.com>
Thu, 24 Jun 1993 20:43:41 +0000
(20:43 +0000)
committer
David 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
patch
|
blob
|
history
diff --git
a/sim/h8300/run.c
b/sim/h8300/run.c
index 669c83f32388d755b784bc43091bc0be16beba2c..44064d81f95150cf731be387977959c123b32e38 100644
(file)
--- a/
sim/h8300/run.c
+++ b/
sim/h8300/run.c
@@
-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;
}