File tree 13 files changed +0
-222
lines changed
13 files changed +0
-222
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,6 @@ set(TARGET_LIBM_ENTRYPOINTS
220
220
# math.h entrypoints
221
221
libc.src.math.acosf
222
222
libc.src.math.acoshf
223
- libc.src.math.asin
224
223
libc.src.math.asinf
225
224
libc.src.math.asinhf
226
225
libc.src.math.atanf
@@ -296,7 +295,6 @@ set(TARGET_LIBM_ENTRYPOINTS
296
295
libc.src.math.nextafter
297
296
libc.src.math.nextafterf
298
297
libc.src.math.nextafterl
299
- libc.src.math.pow
300
298
libc.src.math.remainderf
301
299
libc.src.math.remainder
302
300
libc.src.math.remainderl
Original file line number Diff line number Diff line change @@ -227,7 +227,6 @@ set(TARGET_LIBM_ENTRYPOINTS
227
227
# math.h entrypoints
228
228
libc.src.math.acosf
229
229
libc.src.math.acoshf
230
- libc.src.math.asin
231
230
libc.src.math.asinf
232
231
libc.src.math.asinhf
233
232
libc.src.math.atanf
@@ -302,7 +301,6 @@ set(TARGET_LIBM_ENTRYPOINTS
302
301
libc.src.math.nextafter
303
302
libc.src.math.nextafterf
304
303
libc.src.math.nextafterl
305
- libc.src.math.pow
306
304
libc.src.math.remainderf
307
305
libc.src.math.remainder
308
306
libc.src.math.remainderl
Original file line number Diff line number Diff line change @@ -227,7 +227,6 @@ set(TARGET_LIBM_ENTRYPOINTS
227
227
# math.h entrypoints
228
228
libc.src.math.acosf
229
229
libc.src.math.acoshf
230
- libc.src.math.asin
231
230
libc.src.math.asinf
232
231
libc.src.math.asinhf
233
232
libc.src.math.atanf
@@ -304,7 +303,6 @@ set(TARGET_LIBM_ENTRYPOINTS
304
303
libc.src.math.nextafter
305
304
libc.src.math.nextafterf
306
305
libc.src.math.nextafterl
307
- libc.src.math.pow
308
306
libc.src.math.remainderf
309
307
libc.src.math.remainder
310
308
libc.src.math.remainderl
Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ set(TARGET_LIBM_ENTRYPOINTS
114
114
# math.h entrypoints
115
115
libc.src.math.acosf
116
116
libc.src.math.acoshf
117
- libc.src.math.asin
118
117
libc.src.math.asinf
119
118
libc.src.math.asinhf
120
119
libc.src.math.atanf
@@ -191,7 +190,6 @@ set(TARGET_LIBM_ENTRYPOINTS
191
190
libc.src.math.nextafter
192
191
libc.src.math.nextafterf
193
192
libc.src.math.nextafterl
194
- libc.src.math.pow
195
193
libc.src.math.remainderf
196
194
libc.src.math.remainder
197
195
libc.src.math.remainderl
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ endfunction()
43
43
add_math_entrypoint_object(acosf)
44
44
add_math_entrypoint_object(acoshf)
45
45
46
- add_math_entrypoint_object(asin)
47
46
add_math_entrypoint_object(asinf)
48
47
add_math_entrypoint_object(asinhf)
49
48
@@ -153,8 +152,6 @@ add_math_entrypoint_object(nextafter)
153
152
add_math_entrypoint_object(nextafterf)
154
153
add_math_entrypoint_object(nextafterl)
155
154
156
- add_math_entrypoint_object(pow)
157
-
158
155
add_math_entrypoint_object(remainder)
159
156
add_math_entrypoint_object(remainderf)
160
157
add_math_entrypoint_object(remainderl)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -1383,18 +1383,6 @@ add_entrypoint_object(
1383
1383
-O3
1384
1384
)
1385
1385
1386
- add_entrypoint_object(
1387
- asin
1388
- SRCS
1389
- asin.cpp
1390
- HDRS
1391
- ../asin.h
1392
- DEPENDS
1393
- .asinf
1394
- COMPILE_OPTIONS
1395
- -O3
1396
- )
1397
-
1398
1386
add_entrypoint_object(
1399
1387
acosf
1400
1388
SRCS
@@ -1428,19 +1416,6 @@ add_entrypoint_object(
1428
1416
-O3
1429
1417
)
1430
1418
1431
- add_entrypoint_object(
1432
- pow
1433
- SRCS
1434
- pow.cpp
1435
- HDRS
1436
- ../pow.h
1437
- DEPENDS
1438
- .expf
1439
- .logf
1440
- COMPILE_OPTIONS
1441
- -O3
1442
- )
1443
-
1444
1419
add_entrypoint_object(
1445
1420
scalbn
1446
1421
SRCS
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -1482,18 +1482,6 @@ add_fp_unittest(
1482
1482
libc.src.__support.FPUtil.fp_bits
1483
1483
)
1484
1484
1485
- add_fp_unittest(
1486
- asin_test
1487
- NEED_MPFR
1488
- SUITE
1489
- libc_math_unittests
1490
- SRCS
1491
- asin_test.cpp
1492
- DEPENDS
1493
- libc.src.errno.errno
1494
- libc.src.math.asin
1495
- )
1496
-
1497
1485
add_fp_unittest(
1498
1486
acosf_test
1499
1487
NEED_MPFR
@@ -1534,18 +1522,6 @@ add_fp_unittest(
1534
1522
libc.src.__support.FPUtil.fp_bits
1535
1523
)
1536
1524
1537
- add_fp_unittest(
1538
- pow_test
1539
- NEED_MPFR
1540
- SUITE
1541
- libc_math_unittests
1542
- SRCS
1543
- pow_test.cpp
1544
- DEPENDS
1545
- libc.src.errno.errno
1546
- libc.src.math.pow
1547
- )
1548
-
1549
1525
add_fp_unittest(
1550
1526
scalbn_test
1551
1527
NEED_MPFR
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments