h8300.h: Fix formatting.
authorKazu Hirata <kazu@hxi.com>
Sat, 9 Feb 2002 17:31:50 +0000 (17:31 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 9 Feb 2002 17:31:50 +0000 (17:31 +0000)
* config/h8300/h8300.h: Fix formatting.  Remove commented-out
definitions.

From-SVN: r49639

gcc/ChangeLog
gcc/config/h8300/h8300.h

index 29a66368e7ccf0e039d633831ee4887f213014f5..fcc417800b0bb860bd10cc8b42ab83378c160ac9 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-09  Kazu Hirata  <kazu@hxi.com>
+
+       * config/h8300/h8300.h: Fix formatting.  Remove commented-out
+       definitions.
+
 2002-02-09  Kazu Hirata  <kazu@hxi.com>
 
        * config/h8300/h8300.md (length): Correct the distance valid
index 06a29ab2ae4e9db1e47fc93fbb233cd9303f612c..1c53c9d1ef208847a79b8987983dafb6294cf533 100644 (file)
@@ -744,19 +744,21 @@ struct cum_arg
            ^^^^^^ function
 */
 
-#define TRAMPOLINE_TEMPLATE(FILE)                      \
-  do {                                                 \
-    if (TARGET_H8300)                                  \
-      {                                                        \
-       fprintf (FILE, "\tmov.w #0x1234,r3\n");         \
-       fprintf (FILE, "\tjmp   @0x1234\n");            \
-      }                                                        \
-    else                                               \
-      {                                                        \
-       fprintf (FILE, "\tmov.l #0x12345678,er3\n");    \
-       fprintf (FILE, "\tjmp   @0x123456\n");          \
-      }                                                        \
-  } while (0)
+#define TRAMPOLINE_TEMPLATE(FILE)                              \
+  do                                                           \
+    {                                                          \
+      if (TARGET_H8300)                                                \
+       {                                                       \
+         fprintf (FILE, "\tmov.w       #0x1234,r3\n");         \
+         fprintf (FILE, "\tjmp @0x1234\n");                    \
+       }                                                       \
+      else                                                     \
+       {                                                       \
+         fprintf (FILE, "\tmov.l       #0x12345678,er3\n");    \
+         fprintf (FILE, "\tjmp @0x123456\n");                  \
+       }                                                       \
+    }                                                          \
+  while (0)
 
 /* Length in units of the trampoline for entering a nested function.  */
 
@@ -766,23 +768,20 @@ struct cum_arg
    FNADDR is an RTX for the address of the function's pure code.
    CXT is an RTX for the static chain value for the function.  */
 
-#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                              \
-{                                                                              \
-  enum machine_mode mode = TARGET_H8300H || TARGET_H8300S? SImode : HImode; \
-  emit_move_insn (gen_rtx_MEM (mode, plus_constant ((TRAMP), 2)), CXT);    \
-  emit_move_insn (gen_rtx_MEM (mode, plus_constant ((TRAMP), 6)), FNADDR); \
-  if (TARGET_H8300H || TARGET_H8300S)                                     \
-    emit_move_insn (gen_rtx_MEM (QImode, plus_constant ((TRAMP), 6)),     \
-                   GEN_INT (0x5A));                                       \
+#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                           \
+{                                                                           \
+  enum machine_mode mode = TARGET_H8300H || TARGET_H8300S ? SImode : HImode; \
+  emit_move_insn (gen_rtx_MEM (mode, plus_constant ((TRAMP), 2)), CXT);             \
+  emit_move_insn (gen_rtx_MEM (mode, plus_constant ((TRAMP), 6)), FNADDR);   \
+  if (TARGET_H8300H || TARGET_H8300S)                                       \
+    emit_move_insn (gen_rtx_MEM (QImode, plus_constant ((TRAMP), 6)),       \
+                   GEN_INT (0x5A));                                         \
 }
 \f
 /* Addressing modes, and classification of registers for them.  */
 
 #define HAVE_POST_INCREMENT 1
-/*#define HAVE_POST_DECREMENT 0 */
-
 #define HAVE_PRE_DECREMENT 1
-/*#define HAVE_PRE_INCREMENT 0 */
 
 /* Macros to check register numbers against specific register classes.  */