diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 23:05:19 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 23:05:19 +0000 |
commit | 4ae9b5f55b9f7eaf80f4a6613e7752988eb757ee (patch) | |
tree | 33afa2ae3cff7ca09fb3fd13e67c209f1a15842d | |
parent | 9c51dc9c34b9a21ceb59e1a0a812476c1eafd60f (diff) | |
download | gcc-4ae9b5f55b9f7eaf80f4a6613e7752988eb757ee.zip gcc-4ae9b5f55b9f7eaf80f4a6613e7752988eb757ee.tar.gz gcc-4ae9b5f55b9f7eaf80f4a6613e7752988eb757ee.tar.bz2 |
formatting tweaks
From-SVN: r12393
-rw-r--r-- | gcc/alloca.c | 4 | ||||
-rw-r--r-- | gcc/pexecute.c | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/gcc/alloca.c b/gcc/alloca.c index 31fb4e0..8f98b73 100644 --- a/gcc/alloca.c +++ b/gcc/alloca.c @@ -180,7 +180,7 @@ alloca (size) #endif /* Reclaim garbage, defined as all alloca'd storage that - was allocated from deeper in the stack than currently. */ + was allocated from deeper in the stack than currently. */ { register header *hp; /* Traverses linked list. */ @@ -350,7 +350,7 @@ struct stk_trailer #ifdef CRAY2 /* Determine a "stack measure" for an arbitrary ADDRESS. - I doubt that "lint" will like this much. */ + I doubt that "lint" will like this much. */ static long i00afunc (long *address) diff --git a/gcc/pexecute.c b/gcc/pexecute.c index 4378f7e..fa51378 100644 --- a/gcc/pexecute.c +++ b/gcc/pexecute.c @@ -357,7 +357,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags) for (i=1; argv[i]; i++) { fputc ('\'', stdout); - /* See if we have an argument that needs fixing. */ + /* See if we have an argument that needs fixing. */ if (strchr(argv[i], '/')) { tmpname = xmalloc (256); @@ -366,7 +366,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags) } for (cp = argv[i]; *cp; cp++) { - /* Write an Option-d escape char in front of special chars. */ + /* Write an Option-d escape char in front of special chars. */ if (strchr("'+", *cp)) fputc ('\266', stdout); fputc (*cp, stdout); @@ -382,7 +382,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags) for (i=1; argv[i]; i++) { - /* See if we have an argument that needs fixing. */ + /* See if we have an argument that needs fixing. */ if (strchr(argv[i], '/')) { tmpname = xmalloc (256); @@ -393,7 +393,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags) fputc ('\'', stdout); for (cp = argv[i]; *cp; cp++) { - /* Write an Option-d escape char in front of special chars. */ + /* Write an Option-d escape char in front of special chars. */ if (strchr("'+", *cp)) fputc ('\266', stdout); fputc (*cp, stdout); @@ -408,14 +408,14 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags) /* Output commands that arrange to clean up and exit if a failure occurs. We have to be careful to collect the status from the program that was run, rather than some other script command. Also, we don't exit - immediately, since necessary cleanups are at the end of the script. */ + immediately, since necessary cleanups are at the end of the script. */ fputs ("\tSet TmpStatus {Status}\n", stdout); fputs ("\tIf {TmpStatus} != 0\n", stdout); fputs ("\t\tSet Failed {TmpStatus}\n", stdout); fputs ("\tEnd\n", stdout); fputs ("End\n", stdout); - /* We're just composing a script, can't fail here. */ + /* We're just composing a script, can't fail here. */ return 0; } @@ -430,7 +430,7 @@ pwait (pid, status, flags) } /* Write out commands that will exit with the correct error code - if something in the script failed. */ + if something in the script failed. */ void pfinish () |