CS153/hw6/llprograms/analysis13_dce_opt.ll
jmug cfe502c598 Add all the assignment code.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-01-24 18:59:28 -08:00

18 lines
341 B
LLVM

define i64 @program(i64 %argc, i8** %arcv) {
br i1 1, label %one, label %wrong
correct:
ret i64 7
five:
br i1 1, label %correct, label %wrong
four:
br i1 1, label %five, label %wrong
one:
br i1 1, label %two, label %wrong
three:
br i1 1, label %four, label %wrong
two:
br i1 1, label %three, label %wrong
wrong:
ret i64 0
}