CS153/hw6/llprograms/analysis11_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

14 lines
254 B
LLVM

define i64 @program(i64 %argc, i8** %argv) {
ret i64 3
foo:
%4 = alloca i64
store i64 1, i64* %4
%5 = alloca i64
store i64 2, i64* %5
%6 = load i64, i64* %4
%7 = load i64, i64* %5
%8 = add i64 %6, %7
%9 = add i64 %8, 10
ret i64 %9
}