mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[benchmark] Don't create array instance in modules with solitary benchmarks
It just produces unnecessary code sign churn.
This commit is contained in:
@@ -16,12 +16,11 @@
|
||||
|
||||
import TestsUtils
|
||||
|
||||
public let benchmarks = [
|
||||
public let benchmarks =
|
||||
BenchmarkInfo(
|
||||
name: "ProtocolDispatch2",
|
||||
runFunction: run_ProtocolDispatch2,
|
||||
tags: [.validation, .abstraction, .cpubench]),
|
||||
]
|
||||
tags: [.validation, .abstraction, .cpubench])
|
||||
|
||||
protocol Pingable { func ping() -> Int; func pong() -> Int}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user