blob: 68793c1daf9919323b16383360ce846ddb934d7c [file] [log] [blame]
// REQUIRES: arm-registered-target
// RUN: %clang -target arm-none-eabi -mcpu=cortex-m4 -mfpu=none -S -o - %s | FileCheck %s
// CHECK-LABEL: compute
// CHECK-NOT: {{s[0-9]}}
// CHECK: .fnend
float compute(float a, float b) {
return (a+b) * (a-b);
}