1// RUN: not llvm-mc -triple x86_64-unknown-unknown %s 2> %t.err 2// RUN: FileCheck --check-prefix=64 < %t.err %s 3 4// RUN: not llvm-mc -triple i386-unknown-unknown %s 2> %t.err 5// RUN: FileCheck --check-prefix=32 < %t.err %s 6// rdar://8204588 7 8// 64: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq') 9cmp $0, 0(%eax) 10 11// 32: error: register %rax is only available in 64-bit mode 12addl $0, 0(%rax) 13 14// 32: test.s:8:2: error: invalid instruction mnemonic 'movi' 15 16# 8 "test.s" 17 movi $8,%eax 18