Files
Plasma/debug/ir.ll

23 lines
375 B
LLVM
Raw Normal View History

; ModuleID = "main"
target triple = "x86_64-pc-windows-msvc"
target datalayout = ""
2025-10-14 21:23:11 +11:00
@"true" = constant i1 1
@"false" = constant i1 0
2025-10-15 06:59:29 +11:00
define i32 @"test"()
{
test_entry:
%".2" = alloca i32
store i32 3, i32* %".2"
%".4" = load i32, i32* %".2"
%".5" = add i32 %".4", 2
ret i32 %".5"
}
define i32 @"main"()
{
main_entry:
2025-10-15 06:59:29 +11:00
%".2" = call i32 @"test"()
ret i32 %".2"
}