OSDN Git Service

formatting tweaks
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Jul 1996 23:05:19 +0000 (23:05 +0000)
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Jul 1996 23:05:19 +0000 (23:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12393 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/alloca.c
gcc/pexecute.c

index 31fb4e0..8f98b73 100644 (file)
@@ -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)
index 4378f7e..fa51378 100644 (file)
@@ -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 ()