1 ; RUN: not llc -o /dev/null %s -mtriple=i386-unknown-unknown 2>&1 | FileCheck %s
2 ; Make sure X32 still works.
3 ; RUN: llc -o /dev/null %s -mtriple=x86_64-linux-gnux32
5 ; CHECK: error: couldn't allocate output register for constraint '{xmm8}'
7 %v = tail call i64 asm "", "={xmm8},0"(i64 0)
11 ; CHECK: error: couldn't allocate output register for constraint '{r8d}'
13 %v = tail call i32 asm "", "={r8d},0"(i32 0)
17 ; CHECK: error: couldn't allocate output register for constraint '{rax}'
19 %v = tail call i64 asm "", "={rax},0"(i64 0)