[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / arm-mfpu-none.c
blob68793c1daf9919323b16383360ce846ddb934d7c
1 // REQUIRES: arm-registered-target
2 // RUN: %clang -target arm-none-eabi -mcpu=cortex-m4 -mfpu=none -S -o - %s | FileCheck %s
4 // CHECK-LABEL: compute
5 // CHECK-NOT: {{s[0-9]}}
6 // CHECK: .fnend
7 float compute(float a, float b) {
8 return (a+b) * (a-b);