1 // RUN: %clang_cc1 -triple aarch64-arm-none-eabi -target-feature +bf16 -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK64 2 // RUN: %clang_cc1 -triple arm-arm-none-eabi -target-feature +bf16 -mfloat-abi hard -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK32-HARD 3 // RUN: %clang_cc1 -triple arm-arm-none-eabi -target-feature +bf16 -mfloat-abi softfp -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK32-SOFTFP 4 5 // CHECK64: define {{.*}}void @_Z3foou6__bf16(bfloat %b) 6 // CHECK32-HARD: define {{.*}}void @_Z3foou6__bf16(bfloat %b) 7 // CHECK32-SOFTFP: define {{.*}}void @_Z3foou6__bf16(i32 %b.coerce) 8 void foo(__bf16 b) {} 9