Skip to content

Commit 7c1f924

Browse files
author
Ron Petrusha
authored
Merge pull request #2623 from pgergq/patch-1
Fix opcode descriptions in OpCodes.xml
2 parents e1555e8 + cd4e1d0 commit 7c1f924

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

xml/System.Reflection.Emit/OpCodes.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6330,7 +6330,7 @@
63306330

63316331
1. The value 1 is pushed onto the stack.
63326332

6333-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6333+
This is a special short encoding for the push of the integer value 1. All special short encodings push 4 byte integers on the stack.
63346334

63356335
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.1` opcode:
63366336

@@ -6385,7 +6385,7 @@
63856385

63866386
1. The value 2 is pushed onto the stack.
63876387

6388-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6388+
This is a special short encoding for the push of the integer value 2. All special short encodings push 4 byte integers on the stack.
63896389

63906390
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.2` opcode:
63916391

@@ -6440,7 +6440,7 @@
64406440

64416441
1. The value 3 is pushed onto the stack.
64426442

6443-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6443+
This is a special short encoding for the push of the integer value 3. All special short encodings push 4 byte integers on the stack.
64446444

64456445
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.3` opcode:
64466446

@@ -6495,7 +6495,7 @@
64956495

64966496
1. The value 4 is pushed onto the stack.
64976497

6498-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6498+
This is a special short encoding for the push of the integer value 4. All special short encodings push 4 byte integers on the stack.
64996499

65006500
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.4` opcode:
65016501

@@ -6550,7 +6550,7 @@
65506550

65516551
1. The value 5 is pushed onto the stack.
65526552

6553-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6553+
This is a special short encoding for the push of the integer value 5. All special short encodings push 4 byte integers on the stack.
65546554

65556555
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.5` opcode:
65566556

@@ -6605,7 +6605,7 @@
66056605

66066606
1. The value 6 is pushed onto the stack.
66076607

6608-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6608+
This is a special short encoding for the push of the integer value 6. All special short encodings push 4 byte integers on the stack.
66096609

66106610
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.6` opcode:
66116611

@@ -6660,7 +6660,7 @@
66606660

66616661
1. The value 7 is pushed onto the stack.
66626662

6663-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6663+
This is a special short encoding for the push of the integer value 7. All special short encodings push 4 byte integers on the stack.
66646664

66656665
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.7` opcode:
66666666

@@ -6715,7 +6715,7 @@
67156715

67166716
1. The value 8 is pushed onto the stack.
67176717

6718-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6718+
This is a special short encoding for the push of the integer value 8. All special short encodings push 4 byte integers on the stack.
67196719

67206720
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.8` opcode:
67216721

@@ -6770,7 +6770,7 @@
67706770

67716771
1. The value -1 is pushed onto the stack.
67726772

6773-
This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.
6773+
This is a special short encoding for the push of the integer value -1. All special short encodings push 4 byte integers on the stack.
67746774

67756775
The following <xref:System.Reflection.Emit.ILGenerator.Emit%2A> method overload can use the `ldc.i4.m1` opcode:
67766776

@@ -14218,4 +14218,4 @@ callvirt m
1421814218
</Docs>
1421914219
</Member>
1422014220
</Members>
14221-
</Type>
14221+
</Type>

0 commit comments

Comments
 (0)