diff --git a/benchmark/cxx-source/CxxSetToCollection.swift b/benchmark/cxx-source/CxxSetToCollection.swift index 99b1cfddf71..5a9e9904ba7 100644 --- a/benchmark/cxx-source/CxxSetToCollection.swift +++ b/benchmark/cxx-source/CxxSetToCollection.swift @@ -14,14 +14,6 @@ // to a Swift collection. import TestsUtils - -#if SWIFT_PACKAGE -// FIXME: Needs fix for https://github.com/apple/swift/issues/61547. - -public let benchmarks = [BenchmarkInfo]() - -#else - import CxxStdlibPerformance import Cxx import CxxStdlib // FIXME(rdar://128520766): this import should be redundant @@ -72,5 +64,3 @@ public func run_CxxSetOfU32_forEach(_ n: Int) { } } } - -#endif diff --git a/benchmark/cxx-source/CxxVectorSum.swift b/benchmark/cxx-source/CxxVectorSum.swift index eb3aa4d6e81..ad6d37773e5 100644 --- a/benchmark/cxx-source/CxxVectorSum.swift +++ b/benchmark/cxx-source/CxxVectorSum.swift @@ -14,14 +14,6 @@ // as compared to the C++ implementation of such sum. import TestsUtils - -#if SWIFT_PACKAGE -// FIXME: Needs fix for https://github.com/apple/swift/issues/61547. - -public let benchmarks = [BenchmarkInfo]() - -#else - import CxxStdlibPerformance import Cxx import CxxStdlib // FIXME(rdar://128520766): this import should be redundant @@ -127,4 +119,3 @@ public func run_CxxVectorOfU32_Sum_Swift_Reduce(_ n: Int) { } blackHole(sum) } -#endif