Correct formatting in previous patch.
authorDale Johannesen <dalej@apple.com>
Thu, 31 Oct 2002 20:32:49 +0000 (20:32 +0000)
committerDale Johannesen <dalej@gcc.gnu.org>
Thu, 31 Oct 2002 20:32:49 +0000 (20:32 +0000)
From-SVN: r58692

gcc/ChangeLog
gcc/config/rs6000/darwin.h

index 6a99d0d5f3c2aa0e7be1d3754598ebdd81d3b62d..32ce1a85c1d1d223f2338e87e0a1b53967339a1f 100644 (file)
@@ -1,3 +1,7 @@
+Thu Oct 31  Dale Johannesen  <dalej@apple.com>
+
+       * config/rs6000/darwin.h:  Correct formatting in previous.
+
 Thu Oct 31  Dale Johannesen  <dalej@apple.com>
 
        * config/rs6000/darwin.h:  Enable -falign-xxx options.
index 4cee76030909443106ceccec50f8690ec59760d7..4b3a902cb3967059bdcf895fb12a3df755c25528 100644 (file)
@@ -140,14 +140,16 @@ Boston, MA 02111-1307, USA.  */
    the location counter to a multiple of 2**LOG bytes using the
    "nop" instruction as padding.  */
 
-#define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG)                    \
-  do {                                                         \
-    if ((LOG) < 3) {                                           \
-      ASM_OUTPUT_ALIGN (FILE,LOG);                             \
-    }                                                          \
-    else /* nop == ori r0,r0,0 */                              \
-      fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG));     \
-  } while (0);
+#define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG)                   \
+  do                                                          \
+    {                                                         \
+      if ((LOG) < 3)                                          \
+        {                                                     \
+          ASM_OUTPUT_ALIGN (FILE,LOG);                        \
+        }                                                     \
+      else /* nop == ori r0,r0,0 */                           \
+        fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG));  \
+    } while (0)
 
 /* Generate insns to call the profiler.  */