summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/GitHub_13056/GitHub_13056.cs
blob: ed21fe17c51b917c2b7ec27aec9255397260514a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//

using System;
using System.Runtime.CompilerServices;
using System.Collections;

public class Regression13056
{
    const int Pass = 100;
    const int Fail = -1;

    private static void ThrowMinMaxException<T>(T min, T max)
    {
        throw new ArgumentException("min > max");
    }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static Double Clamp(Double value, Double min, Double max)
    {
        if (min > max)
            ThrowMinMaxException(min, max);
        if (value < min)
            return min;
        else if (value > max)
            return max;
        return value;
    }

    public static int Main()
    {
        if (Clamp(1, 2, 3)   != 2)  return Fail;
        if (Clamp(4, 2, 10)  != 4)  return Fail;
        if (Clamp(8, 2, 9)   != 8)  return Fail;
        if (Clamp(10, 2, 11) != 10) return Fail;

        return Pass;
    }
}