10 lines · c
1// REQUIRES: arm-registered-target2// RUN: %clang -target arm-none-eabi -mcpu=cortex-m4 -mfpu=none -S -o - %s | FileCheck %s3 4// CHECK-LABEL: compute5// CHECK-NOT: {{s[0-9]}}6// CHECK: .fnend7float compute(float a, float b) {8 return (a+b) * (a-b);9}10