Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MiscInstr.cs « codegen « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05555085e325828f4d396eff502c0f21a205e227 (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
//
// Mono.ILASM.MiscInstr
//
// Author(s):
//  Jackson Harper (Jackson@LatitudeGeo.com)
//
// (C) 2003 Jackson Harper, All rights reserved
//


using System;

namespace Mono.ILASM {

        public enum MiscInstr {
                ldstr,
                ldc_r4,
                ldc_r8,
                ldc_i8,
                _switch,
                calli,
                ldtoken
        }
}