File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -398,6 +398,12 @@ set(TARGET_LIBM_ENTRYPOINTS
398
398
libc.src.math.frexp
399
399
libc.src.math.frexpf
400
400
libc.src.math.frexpl
401
+ libc.src.math.fromfp
402
+ libc.src.math.fromfpf
403
+ libc.src.math.fromfpl
404
+ libc.src.math.fromfpx
405
+ libc.src.math.fromfpxf
406
+ libc.src.math.fromfpxl
401
407
libc.src.math.hypot
402
408
libc.src.math.hypotf
403
409
libc.src.math.ilogb
@@ -480,6 +486,12 @@ set(TARGET_LIBM_ENTRYPOINTS
480
486
libc.src.math.trunc
481
487
libc.src.math.truncf
482
488
libc.src.math.truncl
489
+ libc.src.math.ufromfp
490
+ libc.src.math.ufromfpf
491
+ libc.src.math.ufromfpl
492
+ libc.src.math.ufromfpx
493
+ libc.src.math.ufromfpxf
494
+ libc.src.math.ufromfpxl
483
495
)
484
496
485
497
if(LIBC_TYPES_HAS_FLOAT128)
@@ -502,6 +514,8 @@ if(LIBC_TYPES_HAS_FLOAT128)
502
514
libc.src.math.fminimum_mag_numf128
503
515
libc.src.math.fmodf128
504
516
libc.src.math.frexpf128
517
+ libc.src.math.fromfpf128
518
+ libc.src.math.fromfpxf128
505
519
libc.src.math.ilogbf128
506
520
libc.src.math.ldexpf128
507
521
libc.src.math.llogbf128
@@ -519,6 +533,8 @@ if(LIBC_TYPES_HAS_FLOAT128)
519
533
libc.src.math.roundf128
520
534
libc.src.math.sqrtf128
521
535
libc.src.math.truncf128
536
+ libc.src.math.ufromfpf128
537
+ libc.src.math.ufromfpxf128
522
538
)
523
539
endif()
524
540
Original file line number Diff line number Diff line change @@ -265,6 +265,12 @@ set(TARGET_LIBM_ENTRYPOINTS
265
265
libc.src.math.frexp
266
266
libc.src.math.frexpf
267
267
libc.src.math.frexpl
268
+ libc.src.math.fromfp
269
+ libc.src.math.fromfpf
270
+ libc.src.math.fromfpl
271
+ libc.src.math.fromfpx
272
+ libc.src.math.fromfpxf
273
+ libc.src.math.fromfpxl
268
274
libc.src.math.hypot
269
275
libc.src.math.hypotf
270
276
libc.src.math.ilogb
@@ -347,6 +353,12 @@ set(TARGET_LIBM_ENTRYPOINTS
347
353
libc.src.math.trunc
348
354
libc.src.math.truncf
349
355
libc.src.math.truncl
356
+ libc.src.math.ufromfp
357
+ libc.src.math.ufromfpf
358
+ libc.src.math.ufromfpl
359
+ libc.src.math.ufromfpx
360
+ libc.src.math.ufromfpxf
361
+ libc.src.math.ufromfpxl
350
362
)
351
363
352
364
set(TARGET_LLVMLIBC_ENTRYPOINTS
Original file line number Diff line number Diff line change @@ -406,6 +406,12 @@ set(TARGET_LIBM_ENTRYPOINTS
406
406
libc.src.math.frexp
407
407
libc.src.math.frexpf
408
408
libc.src.math.frexpl
409
+ libc.src.math.fromfp
410
+ libc.src.math.fromfpf
411
+ libc.src.math.fromfpl
412
+ libc.src.math.fromfpx
413
+ libc.src.math.fromfpxf
414
+ libc.src.math.fromfpxl
409
415
libc.src.math.hypot
410
416
libc.src.math.hypotf
411
417
libc.src.math.ilogb
@@ -488,6 +494,12 @@ set(TARGET_LIBM_ENTRYPOINTS
488
494
libc.src.math.trunc
489
495
libc.src.math.truncf
490
496
libc.src.math.truncl
497
+ libc.src.math.ufromfp
498
+ libc.src.math.ufromfpf
499
+ libc.src.math.ufromfpl
500
+ libc.src.math.ufromfpx
501
+ libc.src.math.ufromfpxf
502
+ libc.src.math.ufromfpxl
491
503
)
492
504
493
505
if(LIBC_TYPES_HAS_FLOAT128)
@@ -510,6 +522,8 @@ if(LIBC_TYPES_HAS_FLOAT128)
510
522
libc.src.math.fminimum_mag_numf128
511
523
libc.src.math.fmodf128
512
524
libc.src.math.frexpf128
525
+ libc.src.math.fromfpf128
526
+ libc.src.math.fromfpxf128
513
527
libc.src.math.ilogbf128
514
528
libc.src.math.ldexpf128
515
529
libc.src.math.llogbf128
@@ -527,6 +541,8 @@ if(LIBC_TYPES_HAS_FLOAT128)
527
541
libc.src.math.roundf128
528
542
libc.src.math.sqrtf128
529
543
libc.src.math.truncf128
544
+ libc.src.math.ufromfpf128
545
+ libc.src.math.ufromfpxf128
530
546
)
531
547
endif()
532
548
You can’t perform that action at this time.
0 commit comments