Created
June 23, 2016 23:12
-
-
Save lqd/f0533aabbf9da010f679c46633d25f78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(module | |
(memory 0) | |
(type $rustfn-0-14 (func (param i32 i32) (result i32))) | |
(type $rustfn-0-28 (func (param i32 i32) (result i32))) | |
(type $rustfn-0-39 (func (param i32 i32) (result i32))) | |
(type $rustfn-0-42 (func (param i32) (result i32))) | |
(type $rustfn-0-44 (func (param i32 i32) (result i32))) | |
(export "main" $main) | |
(func $fibonacci_recursive (type $rustfn-0-42) (param $0 i32) (result i32) | |
(local $1 i32) | |
(local $2 i32) | |
(block $shape$1$break | |
(if | |
(i32.eq | |
(get_local $0) | |
(i32.const 0) | |
) | |
(set_local $1 | |
(i32.const 2) | |
) | |
(block | |
(if | |
(i32.eq | |
(get_local $0) | |
(i32.const 1) | |
) | |
(block | |
(set_local $1 | |
(i32.const 2) | |
) | |
(br $shape$1$break) | |
) | |
) | |
(set_local $2 | |
(i32.const 0) | |
) | |
) | |
) | |
) | |
(if | |
(i32.eq | |
(get_local $1) | |
(i32.const 2) | |
) | |
(set_local $2 | |
(i32.const 1) | |
) | |
) | |
(if | |
(get_local $2) | |
(get_local $0) | |
(i32.add | |
(call $fibonacci_recursive | |
(i32.sub | |
(get_local $0) | |
(i32.const 1) | |
) | |
) | |
(call $fibonacci_recursive | |
(i32.sub | |
(get_local $0) | |
(i32.const 2) | |
) | |
) | |
) | |
) | |
) | |
(func $main (type $rustfn-0-44) (param $0 i32) (param $1 i32) (result i32) | |
(call $fibonacci_recursive | |
(get_local $0) | |
) | |
) | |
) | |
(assert_return (invoke "main" (i32.const 10) (i32.const 0)) (i32.const 55)) | |
(assert_return (invoke "main" (i32.const 20) (i32.const 0)) (i32.const 6765)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment