Date: Fri, 3 Oct 2014 12:14:20 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r272472 - head/contrib/binutils/gas/config Message-ID: <201410031214.s93CEKOI036094@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410031214.s93CEKOI036094>