Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / asm-modifier-error.ll
blob2d942c01fe0de27c9730f9aeb5c123c3f22aae9b
1 ; RUN: not llc < %s -mtriple=x86_64-unknown-unknown 2>&1 | FileCheck %s
3 ; CHECK: error: invalid operand in inline asm: 'mov %ah, ${0:h}'
4 define void @test1() {
5 entry:
6   %0 = tail call i8 asm sideeffect "mov %ah, ${0:h}", "=r,~{eax},~{ebx},~{ecx},~{edx},~{dirflag},~{fpsr},~{flags}"()
7   ret void
10 ;CHECK: error: invalid operand in inline asm: 'vmovd ${1:k}, $0'
11 define i32 @foo() {
12 entry:
13   %0 = tail call i32 asm sideeffect "vmovd ${1:k}, $0", "=r,x,~{dirflag},~{fpsr},~{flags}"(<2 x i64> <i64 240518168632, i64 240518168632>)
14   ret i32 %0