Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/multithreaded-server
/
.
/
tests
/
wasm
/
trap-idiv.cpp
blob: 8092626661648db83b4a6f741e092a34289c814f [
file
] [
log
] [
blame
] [
edit
]
#include
<emscripten.h>
int
main
()
{
volatile
int
i
=
1
;
volatile
int
j
=
0
;
EM_ASM
({
Module
.
print
(
'|'
+
$0
+
'|'
)
},
i
/
j
);
}