;;; TOOL: run-roundtrip ;;; FLAGS: --stdout --generate-names (module (import "an" "import" (func (param i32))) (import "another" "import" (func (param f32))) (func i32.const 0 call 0 f32.const 0 call 1)) (;; STDOUT ;;; (module (type $t0 (func (param i32))) (type $t1 (func (param f32))) (type $t2 (func)) (import "an" "import" (func $f0 (type $t0))) (import "another" "import" (func $f1 (type $t1))) (func $f2 (type $t2) i32.const 0 call $f0 f32.const 0x0p+0 (;=0;) call $f1)) ;;; STDOUT ;;)