You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ wget https://gist.github.com/kateinoigakukun/bb62851920f5935d6f23fc9a88fff022/raw/cb41560e14dfa7f05ff49fb20f1ac6c1c1013d5e/a.out
$ wasmer run a.out --llvm
[ RUN ] NumericParsing.UInt8/success
[ OK ] NumericParsing.UInt8/success
[ RUN ] NumericParsing.Int8/success
[ OK ] NumericParsing.Int8/success
[ RUN ] NumericParsing.UInt16/success
[ OK ] NumericParsing.UInt16/success
[ RUN ] NumericParsing.Int16/success
[ OK ] NumericParsing.Int16/success
[ RUN ] NumericParsing.UInt32/success
[ OK ] NumericParsing.UInt32/success
[ RUN ] NumericParsing.Int32/success
[ OK ] NumericParsing.Int32/success
[ RUN ] NumericParsing.UInt64/success
[ OK ] NumericParsing.UInt64/success
[ RUN ] NumericParsing.Int64/success
[ OK ] NumericParsing.Int64/success
[ RUN ] NumericParsing.UInt/success
[ OK ] NumericParsing.UInt/success
[ RUN ] NumericParsing.Int/success
[ OK ] NumericParsing.Int/success
[ RUN ] NumericParsing.FixedWidthInteger/maxUInt64
[ OK ] NumericParsing.FixedWidthInteger/maxUInt64
[ RUN ] NumericParsing.Float/Basics
[ OK ] NumericParsing.Float/Basics
[ RUN ] NumericParsing.Double/Basics
[ OK ] NumericParsing.Double/Basics
NumericParsing: All tests passed
$ wasmer run a.out --singlepass
# Same output as llvm backend
$ wasmer run a.out --cranelift
[ RUN ] NumericParsing.UInt8/success
thread 'main' has overflowed its stack
fatal runtime error: stack overflow
Expected behavior
No stack overflow exception
Actual behavior
Additional context
The text was updated successfully, but these errors were encountered:
The wasmer cranelift backend is broken since 1.0.0-alpha3, so we use
singlepass backend instead until the bug will be resolved.
wasmerio/wasmer#1674
# Conflicts:
# test/lit.cfg
Describe the bug
Binary: https://gist.github.com/kateinoigakukun/bb62851920f5935d6f23fc9a88fff022
This wasm binary can't be run with wasmer 1.0.0-alpha3 with cranelift backend.
Steps to reproduce
Expected behavior
No stack overflow exception
Actual behavior
Additional context
The text was updated successfully, but these errors were encountered: