xref: /aosp_15_r20/external/llvm/test/CodeGen/ARM/invalid-target.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple armvinvalid-linux-gnueabi %s -o - 2>&1 | \
2*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=ARMVINVALID
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple armebvinvalid-linux-gnueabi %s -o - 2>&1 | \
5*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=ARMEBVINVALID
6*9880d681SAndroid Build Coastguard Worker
7*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple thumbvinvalid-linux-gnueabi %s -o - 2>&1 | \
8*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=THUMBVINVALID
9*9880d681SAndroid Build Coastguard Worker
10*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple thumbebvinvalid-linux-gnueabi %s -o - 2>&1 | \
11*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=THUMBEBVINVALID
12*9880d681SAndroid Build Coastguard Worker
13*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple thumbv2-linux-gnueabi %s -o - 2>&1 | \
14*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=THUMBV2
15*9880d681SAndroid Build Coastguard Worker
16*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple thumbv3-linux-gnueabi %s -o - 2>&1 | \
17*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=THUMBV3
18*9880d681SAndroid Build Coastguard Worker
19*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple arm64invalid-linux-gnu %s -o - 2>&1 | \
20*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=ARM64INVALID
21*9880d681SAndroid Build Coastguard Worker
22*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple aarch64invalid-linux-gnu %s -o - 2>&1 | \
23*9880d681SAndroid Build Coastguard Worker; RUN: FileCheck %s --check-prefix=AARCH64INVALID
24*9880d681SAndroid Build Coastguard Worker
25*9880d681SAndroid Build Coastguard Worker; ARMVINVALID: error: unable to get target for 'armvinvalid--linux-gnueabi'
26*9880d681SAndroid Build Coastguard Worker; ARMEBVINVALID: error: unable to get target for 'armebvinvalid--linux-gnueabi'
27*9880d681SAndroid Build Coastguard Worker; THUMBVINVALID: error: unable to get target for 'thumbvinvalid--linux-gnueabi'
28*9880d681SAndroid Build Coastguard Worker; THUMBEBVINVALID: error: unable to get target for 'thumbebvinvalid--linux-gnueabi'
29*9880d681SAndroid Build Coastguard Worker; THUMBV2: error: unable to get target for 'thumbv2--linux-gnueabi'
30*9880d681SAndroid Build Coastguard Worker; THUMBV3: error: unable to get target for 'thumbv3--linux-gnueabi'
31*9880d681SAndroid Build Coastguard Worker; ARM64INVALID: error: unable to get target for 'arm64invalid--linux-gnu'
32*9880d681SAndroid Build Coastguard Worker; AARCH64INVALID: error: unable to get target for 'aarch64invalid--linux-gnu'
33