diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-10 14:06:14 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-10 14:06:14 +0000 |
commit | cf35eebc4019446ecbd7b86d4f999e11aa79f5a1 (patch) | |
tree | dd97d36eb757e042ec620df2ea8be0284472b473 | |
parent | 07b2f2fd6efdf33ab13eb31fc8ea38668dbf6ed6 (diff) | |
download | gcc-cf35eebc4019446ecbd7b86d4f999e11aa79f5a1.zip gcc-cf35eebc4019446ecbd7b86d4f999e11aa79f5a1.tar.gz gcc-cf35eebc4019446ecbd7b86d4f999e11aa79f5a1.tar.bz2 |
* config/h8300/h8300.h: Fix formatting.
From-SVN: r44763
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 28 |
2 files changed, 19 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3e0bc8e..a76f2e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-10 Kazu Hirata <kazu@hxi.com> + + * config/h8300/h8300.h: Fix formatting. + 2001-08-08 Jason Merrill <jason_merrill@redhat.com> * c-common.h (RETURN_NULLIFIED_P): Lose. diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 735a423..dc7a8ac 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1134,17 +1134,17 @@ readonly_data () \ /* If we are referencing a function that is supposed to be called through the function vector, the SYMBOL_REF_FLAG in the rtl so the call patterns can generate the correct code. */ -#define ENCODE_SECTION_INFO(DECL) \ - if (TREE_CODE (DECL) == FUNCTION_DECL \ - && h8300_funcvec_function_p (DECL)) \ - SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \ - else if (TREE_CODE (DECL) == VAR_DECL \ - && (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \ - && h8300_eightbit_data_p (DECL)) \ - SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \ - else if (TREE_CODE (DECL) == VAR_DECL \ - && (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \ - && h8300_tiny_data_p (DECL)) \ +#define ENCODE_SECTION_INFO(DECL) \ + if (TREE_CODE (DECL) == FUNCTION_DECL \ + && h8300_funcvec_function_p (DECL)) \ + SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \ + else if (TREE_CODE (DECL) == VAR_DECL \ + && (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \ + && h8300_eightbit_data_p (DECL)) \ + SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \ + else if (TREE_CODE (DECL) == VAR_DECL \ + && (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \ + && h8300_tiny_data_p (DECL)) \ h8300_encode_label (DECL); /* Store the user-specified part of SYMBOL_NAME in VAR. @@ -1250,7 +1250,8 @@ readonly_data () \ char dstr[30]; \ REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr); \ fprintf (FILE, "\t.double %s\n", dstr); \ - } while (0) + } \ + while (0) /* This is how to output an assembler line defining a `float' constant. */ #define ASM_OUTPUT_FLOAT(FILE, VALUE) \ @@ -1259,7 +1260,8 @@ readonly_data () \ char dstr[30]; \ REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr); \ fprintf (FILE, "\t.float %s\n", dstr); \ - } while (0) + } \ + while (0) /* This is how to output an assembler line defining an `int' constant. */ |