mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-16 07:28:52 +00:00
Update skeleton
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
fun i32 @const_prop_same {
|
||||
fun i32 @const_prop_same () {
|
||||
init:
|
||||
bid: b0
|
||||
allocations:
|
||||
|
||||
block b0:
|
||||
br undef:i1 b1() b1()
|
||||
br undef:i1, b1(), b1()
|
||||
|
||||
block b1:
|
||||
ret 0:i1
|
||||
}
|
||||
|
||||
fun i32 @const_prop_true {
|
||||
fun i32 @const_prop_true () {
|
||||
init:
|
||||
bid: b0
|
||||
allocations:
|
||||
|
||||
block b0:
|
||||
br 1:i1 b1() b2()
|
||||
br 1:i1, b1(), b2()
|
||||
|
||||
block b1:
|
||||
ret 0:i1
|
||||
@@ -25,13 +25,13 @@ block b2:
|
||||
ret 0:i1
|
||||
}
|
||||
|
||||
fun i32 @const_prop_false {
|
||||
fun i32 @const_prop_false () {
|
||||
init:
|
||||
bid: b0
|
||||
allocations:
|
||||
|
||||
block b0:
|
||||
br 0:i1 b1() b2()
|
||||
br 0:i1, b1(), b2()
|
||||
|
||||
block b1:
|
||||
ret 0:i1
|
||||
@@ -40,7 +40,7 @@ block b2:
|
||||
ret 0:i1
|
||||
}
|
||||
|
||||
fun i32 @const_prop_switch_same {
|
||||
fun i32 @const_prop_switch_same () {
|
||||
init:
|
||||
bid: b0
|
||||
allocations:
|
||||
@@ -55,7 +55,7 @@ block b1:
|
||||
ret 0:i1
|
||||
}
|
||||
|
||||
fun i32 @const_prop_switch_case {
|
||||
fun i32 @const_prop_switch_case () {
|
||||
init:
|
||||
bid: b0
|
||||
allocations:
|
||||
@@ -76,7 +76,7 @@ block b3:
|
||||
ret 0:i1
|
||||
}
|
||||
|
||||
fun i32 @const_prop_switch_default {
|
||||
fun i32 @const_prop_switch_default () {
|
||||
init:
|
||||
bid: b0
|
||||
allocations:
|
||||
|
||||
Reference in New Issue
Block a user