aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/Disassembler/X86/simple-tests.txt
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2011-10-14 07:06:56 +0000
committerCraig Topper <craig.topper@gmail.com>2011-10-14 07:06:56 +0000
commit54a11176f6a5e07e243f1d87ba19ac3f4681976b (patch)
treefb02ac7c62af6ff89a32f6f0c788e3721ae3f430 /test/MC/Disassembler/X86/simple-tests.txt
parent909652f6876a97d63db20606cd1b37e95d016caf (diff)
downloadexternal_llvm-54a11176f6a5e07e243f1d87ba19ac3f4681976b.zip
external_llvm-54a11176f6a5e07e243f1d87ba19ac3f4681976b.tar.gz
external_llvm-54a11176f6a5e07e243f1d87ba19ac3f4681976b.tar.bz2
Add X86 ANDN instruction. Including instruction selection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Disassembler/X86/simple-tests.txt')
-rw-r--r--test/MC/Disassembler/X86/simple-tests.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/MC/Disassembler/X86/simple-tests.txt b/test/MC/Disassembler/X86/simple-tests.txt
index 8ca3015..2dc918c 100644
--- a/test/MC/Disassembler/X86/simple-tests.txt
+++ b/test/MC/Disassembler/X86/simple-tests.txt
@@ -506,3 +506,15 @@
# CHECK: tzcntq %rax, %rax
0xf3 0x48 0x0f 0xbc 0xc0
+
+# CHECK: andnl %ecx, %r15d, %eax
+0xc4 0xe2 0x00 0xf2 0xc1
+
+# CHECK: andnq %rax, %r15, %rax
+0xc4 0xe2 0x80 0xf2 0xc0
+
+# CHECK: andnl (%rax), %r15d, %eax
+0xc4 0xe2 0x00 0xf2 0x00
+
+# CHECK: andnq (%rax), %r15, %rax
+0xc4 0xe2 0x80 0xf2 0x00