Add tests that trap, and fix handling of SIGFPE on x86.

This commit is contained in:
Dan Gohman
2018-11-27 06:29:07 -08:00
parent 35627cf37f
commit 2a760ae5e8
4 changed files with 62 additions and 22 deletions

View File

@@ -0,0 +1,9 @@
(module
(func $foo
(call $main)
)
(func $main
(call $foo)
)
(start $main)
)