summaryrefslogtreecommitdiff
path: root/tests/src/JIT/CodeGenBringUpTests/LocallocCnstB1.cs
blob: 59a0db40755b1f108b465749b9f3348a299966d8 (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
42
43
44
45
46
47
48
49
// 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;
public class BringUpTest
{
    const int Pass = 100;
    const int Fail = -1;

    // Reduce all values to byte
    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static unsafe bool CHECK(byte check, byte expected) {
        return check == expected;
    }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static unsafe int LocallocCnstB1()
    {
        byte* a = stackalloc byte[1];
        for (int i = 0; i < 1; i++)
        {
            a[i] = (byte) i;
        }

        for (int i = 0; i < 1; i++)
        {
            if (!CHECK(a[i], (byte) i)) return i;
        }

        return -1;
    }

    public static int Main()
    {
        int ret;

        ret = LocallocCnstB1();
        if (ret != -1) {
            Console.WriteLine("LocallocCnstB1: Failed on index: " + ret);
            return Fail;
        }

        return Pass;
    }
}