brintos

brintos / llvm-project-archived public Read only

0
0
Text · 252 B · 68793c1 Raw
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