diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-07-29 00:44:40 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-07-29 00:44:40 +0000 |
commit | 0a02170ffd8463b17026d8e5e5eb7c3708923d14 (patch) | |
tree | b745a059a92dcfaae69239634c838202ef9f7062 | |
parent | 134d3a2eaa33145cc91a8f9a8b9ad01c399923bb (diff) | |
download | gcc-0a02170ffd8463b17026d8e5e5eb7c3708923d14.tar.gz |
* config/h8300/h8300.h: Fix formatting.
From-SVN: r44440
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6ed56dfa20d..1cc14bef3b5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-07-28 Kazu Hirata <kazu@hxi.com> + + * config/h8300/h8300.h: Fix formatting. + Sat Jul 28 23:35:22 CEST 2001 Jan Hubicka <jh@suse.cz> * basic-block.h (EDGE_FREQUENCY): New macro. diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 9df9fa8b486..87e59e29203 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -850,7 +850,7 @@ struct cum_arg && INTVAL (XEXP (XEXP (XEXP (OP, 0), 1), 1)) == - (int) STACK_BOUNDARY / 8 \ && XEXP (XEXP (OP, 0), 0) == stack_pointer_rtx) - /* 'U' if valid for a bset destination; +/* 'U' if valid for a bset destination; i.e. a register, register indirect, or the eightbit memory region (a SYMBOL_REF with an SYMBOL_REF_FLAG set). @@ -1175,15 +1175,15 @@ readonly_data () \ 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)) \ + && h8300_funcvec_function_p (DECL)) \ SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \ else if ((TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \ - && TREE_CODE (DECL) == VAR_DECL \ - && h8300_eightbit_data_p (DECL)) \ + && TREE_CODE (DECL) == VAR_DECL \ + && h8300_eightbit_data_p (DECL)) \ SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \ else if ((TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \ - && TREE_CODE (DECL) == VAR_DECL \ - && h8300_tiny_data_p (DECL)) \ + && TREE_CODE (DECL) == VAR_DECL \ + && h8300_tiny_data_p (DECL)) \ h8300_encode_label (DECL); /* Store the user-specified part of SYMBOL_NAME in VAR. |