]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/issue57846.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / fixedbugs / issue57846.go
1 // compile
2
3 // Copyright 2023 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 package main
8
9 func Float64D3(list [][][]float64, value float64) int {
10         valueCount := 0
11         for _, listValue := range list {
12                 valueCount += Float64D2(listValue, value)
13         }
14         return valueCount
15 }
16
17 func Float64(list []float64, value float64) int {
18         valueCount := 0
19         for _, listValue := range list {
20                 if listValue == value {
21                         valueCount++
22                 }
23         }
24         return valueCount
25 }
26
27 func Float64D2(list [][]float64, value float64) int {
28         valueCount := 0
29         for _, listValue := range list {
30                 valueCount += Float64(listValue, value)
31         }
32         return valueCount
33 }