diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-08-30 00:02:19 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-08-30 00:02:19 +0000 |
commit | f90b720ba1b70759feea3b3a130a6f8b01709d68 (patch) | |
tree | d1fc6c8386824a06ccb4d5d9042110ede99b0f6a /sim/common/sim-options.c | |
parent | 4113ba4cd75baf802d84cb32f5d500082673ef41 (diff) | |
download | gdb-f90b720ba1b70759feea3b3a130a6f8b01709d68.zip gdb-f90b720ba1b70759feea3b3a130a6f8b01709d68.tar.gz gdb-f90b720ba1b70759feea3b3a130a6f8b01709d68.tar.bz2 |
Passify GCC. Convert 0x0LL to something more portable in the FP code.
Diffstat (limited to 'sim/common/sim-options.c')
-rw-r--r-- | sim/common/sim-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-options.c b/sim/common/sim-options.c index 94342e4..8e8cb2f 100644 --- a/sim/common/sim-options.c +++ b/sim/common/sim-options.c @@ -405,7 +405,7 @@ sim_parse_args (sd, argv) if (optc == -1) { if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE) - STATE_PROG_ARGV (sd) = sim_copy_argv (argv + optind); + STATE_PROG_ARGV (sd) = dupargv (argv + optind); break; } if (optc == '?') |