[PATCH] A couple of driver cleanups
authorNathan Sidwell <nathan@acm.org>
Mon, 13 May 2019 15:57:33 +0000 (15:57 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Mon, 13 May 2019 15:57:33 +0000 (15:57 +0000)
https://gcc.gnu.org/ml/gcc-patches/2019-05/msg00624.html
* gcc.c (execute): Simplify cond-expr into if.  Reformat comment.
(run_attempt): Reformat line break

From-SVN: r271131

gcc/ChangeLog
gcc/gcc.c

index f53d5b3c405d138d50e4e9428b61c16ff84a9942..0baa99366a599b574f24d6ecd815d934a1ba962f 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-13  Nathan Sidwell  <nathan@acm.org>
+
+       * gcc.c (execute): Simplify cond-expr into if.  Reformat comment.
+       (run_attempt): Reformat line break.
+
 2019-05-13  David Edelsohn  <dje.gcc@gmail.com>
 
        PR target/90418
index a1003a5cdf93affa0c345c6f61606d4e2edd4624..cee9d68cbee39dd9cd1fadf49e0b19e5b3999942 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -3068,7 +3068,8 @@ execute (void)
   if (!wrapper_string)
     {
       string = find_a_file (&exec_prefixes, commands[0].prog, X_OK, false);
-      commands[0].argv[0] = (string) ? string : commands[0].argv[0];
+      if (string)
+       commands[0].argv[0] = string;
     }
 
   for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
@@ -3077,8 +3078,7 @@ execute (void)
 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
        fatal_error (input_location, "%<-pipe%> not supported");
 #endif
-       argbuf[i] = 0; /* Termination of
-                                                    command args.  */
+       argbuf[i] = 0; /* Termination of command args.  */
        commands[n_commands].prog = argbuf[i + 1];
        commands[n_commands].argv
          = &(argbuf.address ())[i + 1];
@@ -6926,8 +6926,8 @@ run_attempt (const char **new_argv, const char *out_temp,
     fatal_error (input_location, "pex_init failed: %m");
 
   errmsg = pex_run (pex, pex_flags, new_argv[0],
-                   CONST_CAST2 (char *const *, const char **, &new_argv[1]), out_temp,
-                   err_temp, &err);
+                   CONST_CAST2 (char *const *, const char **, &new_argv[1]),
+                   out_temp, err_temp, &err);
   if (errmsg != NULL)
     {
       errno = err;