xref: /aosp_15_r20/external/llvm/test/CodeGen/ARM/Windows/no-eabi.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc -O3 -mtriple thumbv7-windows %s -filetype asm -o - | FileCheck -check-prefix CHECK-NONEABI %s
2*9880d681SAndroid Build Coastguard Worker; RUN: llc -O3 -mtriple armv7--linux-gnueabi %s -filetype asm -o - | FileCheck -check-prefix CHECK-EABI %s
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Workerdefine arm_aapcs_vfpcc void @function() {
5*9880d681SAndroid Build Coastguard Worker  ret void
6*9880d681SAndroid Build Coastguard Worker}
7*9880d681SAndroid Build Coastguard Worker
8*9880d681SAndroid Build Coastguard Worker; CHECK-EABI: .eabi_attribute
9*9880d681SAndroid Build Coastguard Worker; CHECK-NONEABI-NOT: .eabi_attribute
10*9880d681SAndroid Build Coastguard Worker
11