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/cfgexpand.c | |
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/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 31832e71c87..6882954fab8 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -2368,7 +2368,7 @@ expand_debug_expr (tree exp) return op0; op0 = gen_rtx_DEBUG_EXPR (mode); - XTREE (op0, 0) = exp; + DEBUG_EXPR_TREE_DECL (op0) = exp; SET_DECL_RTL (exp, op0); return op0; |