mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-22 13:44:59 -07:00
8 lines
171 B
Odin
8 lines
171 B
Odin
//+build wasm32
|
|
package runtime
|
|
|
|
@(link_name="__ashlti3", linkage="strong")
|
|
__ashlti3 :: proc "c" (a: i64, b: i32) -> i64 {
|
|
// TODO(bill): __ashlti3 on wasm32
|
|
return a
|
|
} |