Updated hw6 to a newer version

Signed-off-by: jmug <u.g.a.mariano@gmail.com>
This commit is contained in:
Mariano Uvalle 2025-01-24 21:23:08 -08:00
parent 9224001a22
commit 0c04936ccf
356 changed files with 8408 additions and 4725 deletions

View file

@ -0,0 +1,9 @@
define i64 @longboi(i64 %x1, i64 %x2, i64 %x3, i64 %x4, i64 %x5, i64 %x6, i64 %x7, i64 %x8) {
%1 = sub i64 %x7, %x8
ret i64 %1
}
define i64 @main(i64 %argc, i8** %arcv) {
%1 = call i64 @longboi(i64 0, i64 0, i64 0, i64 0, i64 0, i64 0, i64 9, i64 5)
ret i64 %1
}