svn commit: r272472 - head/contrib/binutils/gas/config
Andrew Turner
andrew at FreeBSD.org
Fri Oct 3 12:14:20 UTC 2014
Author: andrew
Date: Fri Oct 3 12:14:19 2014
New Revision: 272472
URL: https://svnweb.freebsd.org/changeset/base/272472
Log:
Allow the optional limitation on dmb instructions as is already the case
with dsb instructions.
Modified:
head/contrib/binutils/gas/config/tc-arm.c
Modified: head/contrib/binutils/gas/config/tc-arm.c
==============================================================================
--- head/contrib/binutils/gas/config/tc-arm.c Fri Oct 3 10:18:22 2014 (r272471)
+++ head/contrib/binutils/gas/config/tc-arm.c Fri Oct 3 12:14:19 2014 (r272472)
@@ -6571,6 +6571,7 @@ do_barrier (void)
if (inst.operands[0].present)
{
constraint ((inst.instruction & 0xf0) != 0x40
+ && (inst.instruction & 0xf0) != 0x50
&& inst.operands[0].imm != 0xf,
"bad barrier type");
inst.instruction |= inst.operands[0].imm;
More information about the svn-src-all
mailing list