aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2009-09-11 21:40:00 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2009-09-11 21:40:00 +0200
commit9258b4c14f120aa74e3589461f3086caa5ca6e36 (patch)
treebb49d84d2fbe4994765b4be8e9ebdc7648378f47 /gcc/combine.c
parent137a05d3c044bbdc7e837a2b5408505aead05212 (diff)
downloadgcc-9258b4c14f120aa74e3589461f3086caa5ca6e36.zip
gcc-9258b4c14f120aa74e3589461f3086caa5ca6e36.tar.gz
gcc-9258b4c14f120aa74e3589461f3086caa5ca6e36.tar.bz2
* combine.c (propagate_for_debug_subst): Call wrap_constant on top.
From-SVN: r151644
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index bc61fbe..3437216 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -2314,7 +2314,7 @@ propagate_for_debug_subst (rtx *loc, void *data)
to = simplify_gen_subreg (GET_MODE (x), to,
GET_MODE (from), SUBREG_BYTE (x));
}
- *loc = to;
+ *loc = wrap_constant (GET_MODE (x), to);
pair->changed = true;
return -1;
}