brintos

brintos / llvm-project-archived public Read only

0
0
Text · 556 B · 677f20a Raw
19 lines · plain
1target triple = "i386-pc-windows"2 3@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 14 5define i32 @main() nounwind {6entry:7  %call = tail call i32 @puts(ptr @.str) nounwind8  tail call void @SomeOtherFunction() nounwind9  ret i32 010}11 12declare i32 @puts(ptr nocapture) nounwind13 14declare void @SomeOtherFunction(...)15 16@var = global i32 017@llvm.used = appending global [1 x ptr] [ptr @var], section "llvm.metadata"18@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr null, ptr null }]19