Skip to content

Commit 9c3ee99

Browse files
committed
[bazel] Fix libc
1 parent bdf4f2b commit 9c3ee99

File tree

1 file changed

+24
-20
lines changed
  • utils/bazel/llvm-project-overlay/libc/test/src/math

1 file changed

+24
-20
lines changed

utils/bazel/llvm-project-overlay/libc/test/src/math/BUILD.bazel

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ cc_library(
175175
deps = [
176176
"//libc:__support_fputil_basic_operations",
177177
"//libc:__support_fputil_fp_bits",
178-
"//libc/utils/MPFRWrapper:mpfr_wrapper",
179178
"//libc/test/UnitTest:LibcUnitTest",
180179
"//libc/test/UnitTest:fp_test_helpers",
180+
"//libc/utils/MPFRWrapper:mpfr_wrapper",
181181
],
182182
)
183183

@@ -370,9 +370,9 @@ cc_library(
370370
deps = [
371371
"//libc:__support_fputil_fenv_impl",
372372
"//libc:__support_fputil_fp_bits",
373-
"//libc/utils/MPFRWrapper:mpfr_wrapper",
374373
"//libc/test/UnitTest:LibcUnitTest",
375374
"//libc/test/UnitTest:fp_test_helpers",
375+
"//libc/utils/MPFRWrapper:mpfr_wrapper",
376376
],
377377
)
378378

@@ -406,9 +406,9 @@ cc_library(
406406
deps = [
407407
"//libc:__support_fputil_fenv_impl",
408408
"//libc:__support_fputil_fp_bits",
409-
"//libc/utils/MPFRWrapper:mpfr_wrapper",
410409
"//libc/test/UnitTest:LibcUnitTest",
411410
"//libc/test/UnitTest:fp_test_helpers",
411+
"//libc/utils/MPFRWrapper:mpfr_wrapper",
412412
],
413413
)
414414

@@ -586,115 +586,119 @@ math_test(
586586
name = "expf",
587587
deps = [
588588
"//libc/utils/MPFRWrapper:mpfr_wrapper",
589-
]
589+
],
590590
)
591591

592592
math_test(
593593
name = "exp2f",
594594
deps = [
595595
"//libc/utils/MPFRWrapper:mpfr_wrapper",
596-
]
596+
],
597597
)
598+
598599
math_test(
599600
name = "exp10f",
600601
deps = [
601602
"//libc/utils/MPFRWrapper:mpfr_wrapper",
602-
]
603+
],
603604
)
605+
604606
math_test(
605607
name = "expm1f",
606608
deps = [
607609
"//libc/utils/MPFRWrapper:mpfr_wrapper",
608-
]
610+
],
609611
)
610612

611613
math_test(
612614
name = "logf",
613615
deps = [
614616
"//libc/utils/MPFRWrapper:mpfr_wrapper",
615-
]
617+
],
616618
)
617619

618620
math_test(
619621
name = "log2f",
620622
deps = [
621623
"//libc/utils/MPFRWrapper:mpfr_wrapper",
622-
]
624+
],
623625
)
624626

625627
math_test(
626628
name = "log10f",
627629
deps = [
628630
"//libc/utils/MPFRWrapper:mpfr_wrapper",
629-
]
631+
],
630632
)
631633

632634
math_test(
633635
name = "log1pf",
634636
deps = [
635637
"//libc/utils/MPFRWrapper:mpfr_wrapper",
636-
]
638+
],
637639
)
638640

639641
math_test(
640642
name = "sinhf",
641643
deps = [
644+
"//libc:__support_cpp_array",
642645
"//libc/utils/MPFRWrapper:mpfr_wrapper",
643-
]
646+
],
644647
)
645648

646649
math_test(
647650
name = "coshf",
648651
deps = [
652+
"//libc:__support_cpp_array",
649653
"//libc/utils/MPFRWrapper:mpfr_wrapper",
650-
]
654+
],
651655
)
652656

653657
math_test(
654658
name = "tanhf",
655659
deps = [
656660
"//libc/utils/MPFRWrapper:mpfr_wrapper",
657-
]
661+
],
658662
)
659663

660664
math_test(
661665
name = "asinhf",
662666
deps = [
663667
"//libc/utils/MPFRWrapper:mpfr_wrapper",
664-
]
668+
],
665669
)
666670

667671
math_test(
668672
name = "acoshf",
669673
deps = [
670674
"//libc/utils/MPFRWrapper:mpfr_wrapper",
671-
]
675+
],
672676
)
673677

674678
math_test(
675679
name = "atanhf",
676680
deps = [
677681
"//libc/utils/MPFRWrapper:mpfr_wrapper",
678-
]
682+
],
679683
)
680684

681685
math_test(
682686
name = "asinf",
683687
deps = [
684688
"//libc/utils/MPFRWrapper:mpfr_wrapper",
685-
]
689+
],
686690
)
687691

688692
math_test(
689693
name = "acosf",
690694
deps = [
691695
"//libc/utils/MPFRWrapper:mpfr_wrapper",
692-
]
696+
],
693697
)
694698

695699
math_test(
696700
name = "atanf",
697701
deps = [
698702
"//libc/utils/MPFRWrapper:mpfr_wrapper",
699-
]
703+
],
700704
)

0 commit comments

Comments
 (0)