repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tag a couple of obsolete members
[mcs.git]
/
ilasm
/
codegen
/
MiscInstr.cs
blob
05555085e325828f4d396eff502c0f21a205e227
1
//
2
// Mono.ILASM.MiscInstr
3
//
4
// Author(s):
5
// Jackson Harper (Jackson@LatitudeGeo.com)
6
//
7
// (C) 2003 Jackson Harper, All rights reserved
8
//
9
10
11
using
System
;
12
13
namespace
Mono
.
ILASM
{
14
15
public enum
MiscInstr
{
16
ldstr
,
17
ldc_r4
,
18
ldc_r8
,
19
ldc_i8
,
20
_switch
,
21
calli
,
22
ldtoken
23
}
24
}
25