diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/inline-asm-bad-modifier.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/inline-asm-bad-modifier.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/inline-asm-bad-modifier.ll b/llvm/test/CodeGen/X86/inline-asm-bad-modifier.ll index 819b9fcfa79..9f6e84f2f89 100644 --- a/llvm/test/CodeGen/X86/inline-asm-bad-modifier.ll +++ b/llvm/test/CodeGen/X86/inline-asm-bad-modifier.ll @@ -1,8 +1,8 @@ ; RUN: not llc -mtriple=x86_64-- < %s 2>&1 | FileCheck %s -;CHECK: error: invalid operand in inline asm: 'vmovd ${1:x}, $0' +;CHECK: error: invalid operand in inline asm: 'vmovd ${1:k}, $0' define i32 @foo() { entry: - %0 = tail call i32 asm sideeffect "vmovd ${1:x}, $0", "=r,x,~{dirflag},~{fpsr},~{flags}"(<2 x i64> <i64 240518168632, i64 240518168632>) + %0 = tail call i32 asm sideeffect "vmovd ${1:k}, $0", "=r,x,~{dirflag},~{fpsr},~{flags}"(<2 x i64> <i64 240518168632, i64 240518168632>) ret i32 %0 } |