xref: /llvm-project/llvm/test/CodeGen/X86/asm-reject-reg-type-mismatch-avx.ll (revision b484fa8289299a4a55708d8e4104aacfea8d7fd5)
1; RUN: not llc -o /dev/null -mattr=avx %s 2>&1 | FileCheck %s
2target triple = "x86_64--"
3
4; CHECK: error: register 'XMM15' allocated for constraint '{xmm15}' does not match required type
5define void @test1() nounwind {
6entry:
7  tail call void asm sideeffect "call dummy", "{xmm15},~{dirflag},~{fpsr},~{flags}"(<8 x i32> <i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8>) #1
8  ret void
9}
10