We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cefa28 commit d06e4d9Copy full SHA for d06e4d9
benchmarks/wasm/count.wat
@@ -15,10 +15,10 @@
15
)
16
(func (;1;) (type 1)
17
;; TODO: now setting it to 100K will result in stack overflow
18
- i32.const 10000 ;; it will not terminate when it's 1mil
+ i32.const 1000 ;; it will not terminate when it's 1mil
19
;; TODO: this doesn't seem like an error in our semantics
20
;; but something about sbt. But why?
21
call 0
22
23
(start 1)
24
-)
+)
benchmarks/wasm/return_call.wat
@@ -26,8 +26,8 @@
26
end
27
28
(func (;2;) (type 1)
29
- i64.const 100000
+ i64.const 10000 ;; 100000 seems causing Github CI failed
30
31
32
(start 2)
33
0 commit comments