diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-06-01 16:21:06 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-06-01 16:21:06 +0200 |
commit | a78d13c3e845bd4b5629b0c810de4d8781bd46b4 (patch) | |
tree | 0c41e8b87ba1498e5bbc5a443141cfafca6af803 /gcc/dwarf2out.c | |
parent | 572070efe35a919dc526dd7972dc7d3b3015a4f5 (diff) | |
download | gcc-a78d13c3e845bd4b5629b0c810de4d8781bd46b4.zip gcc-a78d13c3e845bd4b5629b0c810de4d8781bd46b4.tar.gz gcc-a78d13c3e845bd4b5629b0c810de4d8781bd46b4.tar.bz2 |
dwarf2out.c (mem_loc_descriptor): Call base_type_for_mode with op_mode instead of mode.
* dwarf2out.c (mem_loc_descriptor) <do_ucompare>: Call
base_type_for_mode with op_mode instead of mode.
From-SVN: r174527
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 464de16..14eec3a 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -14685,7 +14685,7 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode, } else { - dw_die_ref type_die = base_type_for_mode (mode, 1); + dw_die_ref type_die = base_type_for_mode (op_mode, 1); dw_loc_descr_ref cvt; if (type_die == NULL) |