From 73d5ac81201335c213a5d2bd29b310661c297070 Mon Sep 17 00:00:00 2001 From: Mark Punzalan Date: Wed, 24 Apr 2019 02:38:41 -0700 Subject: [PATCH] Fix typo in ring benchmark list (incorrect benchmarks are called). (#2911) --- performance/ring/src/main/kotlin/main.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/performance/ring/src/main/kotlin/main.kt b/performance/ring/src/main/kotlin/main.kt index 2f966448581..6a869c49409 100644 --- a/performance/ring/src/main/kotlin/main.kt +++ b/performance/ring/src/main/kotlin/main.kt @@ -220,10 +220,10 @@ class RingLauncher(numWarmIterations: Int, numberOfAttempts: Int, prefix: String "Calls.finalMethod" to callsBenchmark::finalMethodCall, "Calls.openMethodMonomorphic" to callsBenchmark::classOpenMethodCall_MonomorphicCallsite, "Calls.openMethodBimorphic" to callsBenchmark::classOpenMethodCall_BimorphicCallsite, - "Calls.openMethodTrimorphic" to callsBenchmark::classOpenMethodCall_BimorphicCallsite, + "Calls.openMethodTrimorphic" to callsBenchmark::classOpenMethodCall_TrimorphicCallsite, "Calls.interfaceMethodMonomorphic" to callsBenchmark::interfaceMethodCall_MonomorphicCallsite, "Calls.interfaceMethodBimorphic" to callsBenchmark::interfaceMethodCall_BimorphicCallsite, - "Calls.interfaceMethodTrimorphic" to callsBenchmark::interfaceMethodCall_BimorphicCallsite, + "Calls.interfaceMethodTrimorphic" to callsBenchmark::interfaceMethodCall_TrimorphicCallsite, "Calls.returnBoxUnboxFolding" to callsBenchmark::returnBoxUnboxFolding, "Calls.parameterBoxUnboxFolding" to callsBenchmark::parameterBoxUnboxFolding )