diff options
Diffstat (limited to 'llvm/test/MC/Disassembler/X86/simple-tests.txt')
-rw-r--r-- | llvm/test/MC/Disassembler/X86/simple-tests.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/MC/Disassembler/X86/simple-tests.txt b/llvm/test/MC/Disassembler/X86/simple-tests.txt index d1d60ef6d04..1540d12a280 100644 --- a/llvm/test/MC/Disassembler/X86/simple-tests.txt +++ b/llvm/test/MC/Disassembler/X86/simple-tests.txt @@ -488,3 +488,12 @@ # CHECK: popcntq %rax, %rax 0xf3 0x48 0x0f 0xb8 0xc0 + +# CHECK: lzcntl %eax, %eax +0xf3 0x0f 0xbd 0xc0 + +# CHECK: lzcntw %ax, %ax +0x66 0xf3 0x0f 0xbd 0xc0 + +# CHECK: lzcntq %rax, %rax +0xf3 0x48 0x0f 0xbd 0xc0 |