diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-13 13:56:07 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-13 13:56:07 +0000 |
commit | 23dd51cb5d164f15ff2ed573e81ac3ffe34c00eb (patch) | |
tree | ee8539b8137186405c31fc7594e83afce4f4f338 /gcc/rtl.h | |
parent | b7f7149b6ff201820895b436d2e3f2edfc27cb7e (diff) | |
download | gcc-23dd51cb5d164f15ff2ed573e81ac3ffe34c00eb.tar.gz |
PR target/41693
* rtl.h (DEBUG_EXPR_TREE_DECL): Define.
* sched-vis.c (print_value): Use it.
* cselib.c (cselib_hash_rtx): Likewise.
* print-rtl.c (print_rtx): Likewise.
* cfgexpand.c (expand_debug_rtx): Likewise.
* var-tracking.c (vt_expand_loc_callback): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152707 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index a7be009b619..d5dbd1eb5f1 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -930,6 +930,9 @@ extern const char * const reg_note_name[]; #define NOTE_DURING_CALL_P(RTX) \ (RTL_FLAG_CHECK1("NOTE_VAR_LOCATION_DURING_CALL_P", (RTX), NOTE)->call) +/* DEBUG_EXPR_DECL corresponding to a DEBUG_EXPR RTX. */ +#define DEBUG_EXPR_TREE_DECL(RTX) XCTREE (RTX, 0, DEBUG_EXPR) + /* Possible initialization status of a variable. When requested by the user, this information is tracked and recorded in the DWARF debug information, along with the variable's location. */ |