Georgii Rymar | f65ab62 | 2020-08-24 16:24:36 +0300 | [diff] [blame] | 1 | ; Input used for generating checked-in binaries (trivial.obj.*) |
| 2 | ; llc -mtriple=wasm32-unknown-unknown trivial.ll -filetype=obj -o trivial.obj.wasm |
| 3 | |
| 4 | @.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1 |
| 5 | |
| 6 | define i32 @main() nounwind { |
| 7 | entry: |
| 8 | %call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i32 0, i32 0)) nounwind |
| 9 | tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind |
| 10 | ret i32 0 |
| 11 | } |
| 12 | |
| 13 | declare i32 @puts(i8* nocapture) nounwind |
| 14 | |
| 15 | declare void @SomeOtherFunction(...) |