diff options
| author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-05 17:55:07 +0000 |
|---|---|---|
| committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-05 17:55:07 +0000 |
| commit | 1fa1f15b6646ac12a2ad236ee4e6e65d490c89bc (patch) | |
| tree | 108a71e972ed9ea5c80058a08ad9fc5ee4c91e0d | |
| parent | cecc75a931d754df7d180ca5a6c52b02c2e18f0b (diff) | |
| download | ppe42-gcc-1fa1f15b6646ac12a2ad236ee4e6e65d490c89bc.tar.gz ppe42-gcc-1fa1f15b6646ac12a2ad236ee4e6e65d490c89bc.zip | |
* rtl.def (NOTE): Change print format string to print
operand 5 as a note insn name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126374 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 10 | ||||
| -rw-r--r-- | gcc/rtl.def | 6 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d76ac02a1e6..06f8a544493 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,7 +1,11 @@ +2007-07-05 Uros Bizjak <ubizjak@gmail.com> + + * rtl.def (NOTE): Change print format string to print + operand 5 as a note insn name. + 2007-07-05 Sandra Loosemore <sandra@codesourcery.com> David Ung <davidu@mips.com> - gcc/ * config/mips/mips.c (mips_cpu_info): Add 4ksc and 4ksd processors. * doc/invoke.texi: (MIPS Options): Document them. @@ -59,7 +63,7 @@ (vect_do_peeling_for_loop_bound): Don't call vect_estimate_min_profitable_iters. Instead, lookup LOOP_VINFO_COST_MODEL_MIN_ITERS. Don't always print - "may not be profitable". + "may not be profitable". 2007-07-05 Dorit Nuzman <dorit@il.ibm.com> @@ -93,7 +97,7 @@ PR tree-optimization/32604 PR tree-optimization/32606 - + * tree-ssa-pre.c (bb_bitmap_sets): Removed antic_safe_loads. (compute_antic_safe): Removed. (ANTIC_SAFE_LOADS): Ditto. diff --git a/gcc/rtl.def b/gcc/rtl.def index 3fb68ec67e9..c82fa7e86ed 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -140,9 +140,9 @@ DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", RTX_EXTRA) /* Say where in the code a source line starts, for symbol table's sake. Operand: 4: note-specific data - 5: unused (memory layout has to match code_label above) - 6: unique number if line number == note_insn_deleted_label. */ -DEF_RTL_EXPR(NOTE, "note", "iuuB00i", RTX_EXTRA) + 5: enum insn_note + 6: unique number if insn_note == note_insn_deleted_label. */ +DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", RTX_EXTRA) /* ---------------------------------------------------------------------- Top level constituents of INSN, JUMP_INSN and CALL_INSN. |

