summaryrefslogtreecommitdiff
path: root/test/MC
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2018-01-30 15:22:31 +0000
committerHans Wennborg <hans@hanshq.net>2018-01-30 15:22:31 +0000
commit8a0e312d1af7d9556d93264aa3fa963486ab6d11 (patch)
tree3e5d24cc69ae4cfe9109b2b66446dcd54948c59f /test/MC
parentf48ff4c85ec91f7ba5eaa724079542a2016e55b2 (diff)
Merging r323469:
------------------------------------------------------------------------ r323469 | ctopper | 2018-01-25 22:23:57 +0100 (Thu, 25 Jan 2018) | 3 lines [X86] Teach Intel syntax InstPrinter to print lock prefixes that have been parsed from the asm parser. The asm parser puts the lock prefix in the MCInst flags so we need to check that in addition to TSFlags. This matches what the ATT printer does. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_60@323770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r--test/MC/X86/x86-32-coverage.s6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/MC/X86/x86-32-coverage.s b/test/MC/X86/x86-32-coverage.s
index 03be55fa4be..09e147fd162 100644
--- a/test/MC/X86/x86-32-coverage.s
+++ b/test/MC/X86/x86-32-coverage.s
@@ -10774,3 +10774,9 @@ btcl $4, (%eax)
// CHECK: clzero
// CHECK: encoding: [0x0f,0x01,0xfc]
clzero
+
+// CHECK: lock addl %esi, (%edi)
+// INTEL: lock add dword ptr [edi], esi
+// CHECK: encoding: [0xf0,0x01,0x37]
+ lock add %esi, (%edi)
+