This commit is contained in:
T0b1
2023-04-18 12:21:54 +02:00
commit 0bb8f5c3be
14 changed files with 4993 additions and 0 deletions

19
tests/alias.clif Normal file
View File

@@ -0,0 +1,19 @@
function %alias(i8) -> i8 {
block0(v0: i8):
v1 -> v0
return v1
}
function %double_alias(i8) -> i8 {
block0(v0: i8):
v1 -> v0
v2 -> v1
return v2
}
function %alias_inst() -> i8 {
block0:
v0 = iconst.i8 10
v1 -> v0
return v1
}