-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for unsigned comparison (sq#1037)
- Loading branch information
ikiselev
committed
Feb 25, 2017
1 parent
2751b07
commit b66f371
Showing
4 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.assembly Hello {} | ||
.assembly extern mscorlib {} | ||
|
||
.class public abstract sealed Program | ||
extends [mscorlib]System.Object | ||
{ | ||
.method static void Main() | ||
{ | ||
.entrypoint | ||
.maxstack 1 | ||
|
||
ldc.i4 -1 | ||
ldc.i4.5 | ||
ble.un.s END | ||
ldstr "int32" | ||
call void [mscorlib]System.Console::WriteLine(string) | ||
|
||
ldc.i8 -1 | ||
ldc.i8 5 | ||
ble.un.s END | ||
ldstr "int64" | ||
call void [mscorlib]System.Console::WriteLine(string) | ||
|
||
END: | ||
ret | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters