[X86] update_llc_test_checks vector-shuffle-*. NFC.
[oota-llvm.git] / test / CodeGen / X86 / asm-reject-reg-type-mismatch.ll
1 ; RUN: not llc -no-integrated-as %s -o - 2> %t1
2 ; RUN: FileCheck %s < %t1
3 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64--"
5
6 ; CHECK: error: couldn't allocate output register for constraint '{ax}'
7 define i128 @blup() {
8   %v = tail call i128 asm "", "={ax},0,~{dirflag},~{fpsr},~{flags}"(i128 0)
9   ret i128 %v
10 }