summaryrefslogtreecommitdiff
path: root/test/wasm_backend/hello_num_only.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/wasm_backend/hello_num_only.cpp')
-rw-r--r--test/wasm_backend/hello_num_only.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/wasm_backend/hello_num_only.cpp b/test/wasm_backend/hello_num_only.cpp
deleted file mode 100644
index d272f11c6..000000000
--- a/test/wasm_backend/hello_num_only.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <emscripten.h>
-
-int main() {
- int *x = (int*)8;
- *x = 123;
- EM_ASM({
- Module.print("hello, world " + HEAP32[8>>2] + "!");
- });
-}
-