repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
arm-mfpu-none.c
blob
68793c1daf9919323b16383360ce846ddb934d7c
1
// REQUIRES: arm-registered-target
2
// RUN: %clang -target arm-none-eabi -mcpu=cortex-m4 -mfpu=none -S -o - %s | FileCheck %s
3
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
);
9
}