summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical/flowgraph/bug619534/ILStackAllocRepro.il
blob: 905630714add2e5671cc1e7cbfcb0d7c1ed4087e (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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.


.assembly ILStackAllocRepro {}
.assembly extern mscorlib{auto}

.class private auto ansi beforefieldinit Foo
       extends [mscorlib]System.Object
{
  .field private static int32* buffer
  .method private hidebysig static int32 Main() cil managed
  {
    .entrypoint
    // Code size       20 (0x14)
    .maxstack  2
    .locals init (int32* V_0)
    IL_0000:  ldc.i4.8
    IL_0001:  localloc
    IL_0003:  stsfld     int32* Foo::buffer
    IL_0008:  ldsfld     int32* Foo::buffer
    IL_000d:  ldind.i4
    IL_000e:  call       void [mscorlib]System.Console::WriteLine(int32)
ldc.i4 100
    IL_0013:  ret
  } // end of method Foo::Main

} // end of class Foo