diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-07-09 00:38:40 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-07-09 00:38:40 +0000 |
commit | 11597bc9695394e49ccedab270213c8cb7199c65 (patch) | |
tree | 778fb1f5ca53c06e06d21c3bcbc8816da07409c4 /gcc/genautomata.c | |
parent | 084c1779088967df7cde7aef1ac91587d68ab3bb (diff) | |
download | gcc-11597bc9695394e49ccedab270213c8cb7199c65.zip gcc-11597bc9695394e49ccedab270213c8cb7199c65.tar.gz gcc-11597bc9695394e49ccedab270213c8cb7199c65.tar.bz2 |
genattrtab.h: Add new macros for attr `special' flags.
* genattrtab.h: Add new macros for attr `special' flags.
* genattrtab.c (attr_desc): Reorder/resize fields better.
Use attr `special' macros in all calls to make_internal_attr.
* genautomata.c: Likewise.
From-SVN: r69114
Diffstat (limited to 'gcc/genautomata.c')
-rw-r--r-- | gcc/genautomata.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c index 1edb5c5..635d362 100644 --- a/gcc/genautomata.c +++ b/gcc/genautomata.c @@ -9437,7 +9437,7 @@ make_insn_alts_attr (void) make_internal_attr (attr_printf (sizeof ("*") + strlen (INSN_ALTS_FUNC_NAME) + 1, "*%s", INSN_ALTS_FUNC_NAME), - condexp, 0); + condexp, ATTR_NONE); } @@ -9474,7 +9474,7 @@ make_internal_dfa_insn_code_attr (void) (attr_printf (sizeof ("*") + strlen (INTERNAL_DFA_INSN_CODE_FUNC_NAME) + 1, "*%s", INTERNAL_DFA_INSN_CODE_FUNC_NAME), - condexp, 0); + condexp, ATTR_NONE); } @@ -9508,7 +9508,7 @@ make_default_insn_latency_attr (void) make_internal_attr (attr_printf (sizeof ("*") + strlen (INSN_DEFAULT_LATENCY_FUNC_NAME) + 1, "*%s", INSN_DEFAULT_LATENCY_FUNC_NAME), - condexp, 0); + condexp, ATTR_NONE); } @@ -9557,7 +9557,7 @@ make_bypass_attr (void) make_internal_attr (attr_printf (sizeof ("*") + strlen (BYPASS_P_FUNC_NAME) + 1, "*%s", BYPASS_P_FUNC_NAME), - result_rtx, 0); + result_rtx, ATTR_NONE); } |