mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
644 B
29 lines
644 B
5 years ago
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
||
|
target triple = "wasm32-unknown-unknown-wasm"
|
||
|
|
||
|
declare i64 @externalCall(i8*, i32, i64)
|
||
|
|
||
|
define internal i64 @testCall(i8* %ptr, i32 %len, i64 %foo) {
|
||
|
%val = call i64 @externalCall(i8* %ptr, i32 %len, i64 %foo)
|
||
|
ret i64 %val
|
||
|
}
|
||
|
|
||
|
define internal i64 @testCallNonEntry(i8* %ptr, i32 %len) {
|
||
|
entry:
|
||
|
br label %bb1
|
||
|
|
||
|
bb1:
|
||
|
%val = call i64 @externalCall(i8* %ptr, i32 %len, i64 3)
|
||
|
ret i64 %val
|
||
|
}
|
||
|
|
||
|
define void @exportedFunction(i64 %foo) {
|
||
|
%unused = shl i64 %foo, 1
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
define internal void @callExportedFunction(i64 %foo) {
|
||
|
call void @exportedFunction(i64 %foo)
|
||
|
ret void
|
||
|
}
|