File: TwoIfs.il

package info (click to toggle)
cecil-flowanalysis 0.1~svn.128879-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,048 kB
  • ctags: 1,368
  • sloc: cs: 5,512; makefile: 86; sh: 45; ansic: 7; php: 1
file content (20 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.assembly TestCase {}

.class public auto ansi beforefieldinit TestCase
       extends [mscorlib]System.Object
{
	.method public hidebysig static void Main(int32 x, int32 y) cil managed
	{
		IL_0000: ldarg.0
		IL_0001: ldarg.1
		IL_0002: ble.s IL_000e
		IL_0004: ldstr "x > y"
		IL_0009: call void [mscorlib]System.Console::WriteLine(string)
		IL_000e: ldarg.0
		IL_000f: ldarg.1
		IL_0010: bge.s IL_001c
		IL_0012: ldstr "x < y"
		IL_0017: call void [mscorlib]System.Console::WriteLine(string)
		IL_001c: ret
	}
}