diff options
author | Eric Christopher <echristo@apple.com> | 2011-05-03 01:28:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-05-03 01:28:32 +0000 |
commit | 2fc496fcf5c5caf3e6af755d2c8fc97686cc2dd2 (patch) | |
tree | 748cbdd0d1f1e64466cf9fded594df304fa1e7e0 /test/MC | |
parent | cca82149adef8306a295abdc963213ae3b11bbb6 (diff) | |
download | external_llvm-2fc496fcf5c5caf3e6af755d2c8fc97686cc2dd2.zip external_llvm-2fc496fcf5c5caf3e6af755d2c8fc97686cc2dd2.tar.gz external_llvm-2fc496fcf5c5caf3e6af755d2c8fc97686cc2dd2.tar.bz2 |
xmm0 is an implicit parameter in this and so shouldn't be in the
string template.
Fixes rdar://8493866
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/X86/x86-32-coverage.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/MC/X86/x86-32-coverage.s b/test/MC/X86/x86-32-coverage.s index 4ac7efd..aa51dd3 100644 --- a/test/MC/X86/x86-32-coverage.s +++ b/test/MC/X86/x86-32-coverage.s @@ -1,3 +1,7 @@ +# Build output for (null) +# Generated at (null) +# Using (null) configuration, (null) architecture for (null) target of (null) project + // RUN: llvm-mc -triple i386-unknown-unknown %s --show-encoding | FileCheck %s // CHECK: movb $127, 3735928559(%ebx,%ecx,8) @@ -19570,3 +19574,8 @@ // CHECK: aeskeygenassist $125, (%edx,%eax,4), %xmm2 aeskeygenassist $125, (%edx,%eax,4), %xmm2 + +// CHECK: blendvps (%rax), %xmm1 # encoding: [0x66,0x0f,0x38,0x14,0x08] + blendvps (%rax), %xmm1 +// CHECK: blendvps %xmm2, %xmm1 # encoding: [0x66,0x0f,0x38,0x14,0xca] + blendvps %xmm2, %xmm1 |