diff options
author | Jan Beulich <jbeulich@novell.com> | 2013-04-08 11:07:38 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2013-04-08 11:07:38 +0000 |
commit | 94dcf8bfcd6371c85215000dbaef2cac026faf9d (patch) | |
tree | 5e76143c62198be0d00cec164fea9ca42cc8a0c5 /gas | |
parent | 1472d06fd638286148a967c64a3db118887e196c (diff) | |
download | gdb-94dcf8bfcd6371c85215000dbaef2cac026faf9d.zip gdb-94dcf8bfcd6371c85215000dbaef2cac026faf9d.tar.gz gdb-94dcf8bfcd6371c85215000dbaef2cac026faf9d.tar.bz2 |
gas/
2013-04-08 Jan Beulich <jbeulich@suse.com>
* gas/config/tc-arm.c (do_neon_ldr_str): Correct disgnostics for
PC-relative VSTR.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 4d38403..79ba647 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2013-04-08 Jan Beulich <jbeulich@suse.com> + * gas/config/tc-arm.c (do_neon_ldr_str): Correct disgnostics for + PC-relative VSTR. + +2013-04-08 Jan Beulich <jbeulich@suse.com> + * gas/config/tc-arm.c (reg_names): Convert duplicate SP_fiq entry to sp_fiq. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index f3b1ebf..8acfdd7 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -15692,10 +15692,10 @@ do_neon_ldr_str (void) && inst.operands[1].reg == REG_PC && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode)) { - if (!thumb_mode && warn_on_deprecated) - as_warn (_("Use of PC here is deprecated")); - else + if (thumb_mode) inst.error = _("Use of PC here is UNPREDICTABLE"); + else if (warn_on_deprecated) + as_warn (_("Use of PC here is deprecated")); } if (inst.operands[0].issingle) |