Print a type suffix on some polymorphic instructions.

This commit is contained in:
Jakob Stoklund Olesen
2016-07-05 13:45:15 -07:00
parent 954fd015e0
commit a82554192a
3 changed files with 72 additions and 22 deletions

View File

@@ -3,3 +3,12 @@ function minimal() {
ebb0:
trap
}
; Create and use values.
; Polymorphic instructions with type suffix.
function ivalues() {
ebb0:
v0 = iconst.i32 2
v1 = iconst.i8 6
v2 = ishl v0, v1
}

View File

@@ -2,3 +2,10 @@ function minimal() {
ebb0:
trap
}
function ivalues() {
ebb0:
v0 = iconst.i32 2
v1 = iconst.i8 6
v2 = ishl v0, v1
}