trivial.ll 653 B

12345678910111213141516
  1. @.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
  2. define i32 @main() nounwind {
  3. entry:
  4. %call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i32 0, i32 0)) nounwind
  5. tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind
  6. ret i32 0
  7. }
  8. declare i32 @puts(i8* nocapture) nounwind
  9. declare void @SomeOtherFunction(...)
  10. @var = global i32 0
  11. @llvm.used = appending global [1 x i8*] [i8* bitcast (i32* @var to i8*)], section "llvm.metadata"
  12. @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* null, i8* null }]