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
[flang] Accept polymorphic component element in storage_size
[llvm-project.git]
/
libc
/
src
/
math
/
aarch64
/
CMakeLists.txt
blob
bbe927a1c7c889154eef3f1fb7cdc8bf16d4e8a9
1
add_entrypoint_object(
2
ceil
3
SRCS
4
ceil.cpp
5
HDRS
6
../ceil.h
7
COMPILE_OPTIONS
8
-O2
9
)
10
11
add_entrypoint_object(
12
ceilf
13
SRCS
14
ceilf.cpp
15
HDRS
16
../ceilf.h
17
COMPILE_OPTIONS
18
-O2
19
)
20
21
add_entrypoint_object(
22
floor
23
SRCS
24
floor.cpp
25
HDRS
26
../floor.h
27
COMPILE_OPTIONS
28
-O2
29
)
30
31
add_entrypoint_object(
32
floorf
33
SRCS
34
floorf.cpp
35
HDRS
36
../floorf.h
37
COMPILE_OPTIONS
38
-O2
39
)
40
41
add_entrypoint_object(
42
trunc
43
SRCS
44
trunc.cpp
45
HDRS
46
../trunc.h
47
COMPILE_OPTIONS
48
-O2
49
)
50
51
add_entrypoint_object(
52
truncf
53
SRCS
54
truncf.cpp
55
HDRS
56
../truncf.h
57
COMPILE_OPTIONS
58
-O2
59
)
60
61
add_entrypoint_object(
62
round
63
SRCS
64
round.cpp
65
HDRS
66
../round.h
67
COMPILE_OPTIONS
68
-O2
69
)
70
71
add_entrypoint_object(
72
roundf
73
SRCS
74
roundf.cpp
75
HDRS
76
../roundf.h
77
COMPILE_OPTIONS
78
-O2
79
)