diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-30 17:46:55 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-30 17:46:55 -0700 |
commit | 9b79d4ccac0c47e58ce3cfe033730106b6fd302f (patch) | |
tree | 10e11f29df2b6ccbf6b24d9d4289b1e32c586093 /test/wasm_backend/hello_world_real.cpp | |
parent | cb71620e64a267bb39412b3b578379835feb64b2 (diff) | |
parent | 57275446a9cca19ab58bb937753cf75cbd1481fb (diff) | |
download | binaryen-9b79d4ccac0c47e58ce3cfe033730106b6fd302f.tar.gz binaryen-9b79d4ccac0c47e58ce3cfe033730106b6fd302f.tar.bz2 binaryen-9b79d4ccac0c47e58ce3cfe033730106b6fd302f.zip |
Merge pull request #297 from WebAssembly/frist_wasm_backend_full_test
More tests for wasm backend
Diffstat (limited to 'test/wasm_backend/hello_world_real.cpp')
-rw-r--r-- | test/wasm_backend/hello_world_real.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/wasm_backend/hello_world_real.cpp b/test/wasm_backend/hello_world_real.cpp new file mode 100644 index 000000000..1e39e8bd4 --- /dev/null +++ b/test/wasm_backend/hello_world_real.cpp @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() { + printf("hello, world!\n"); +} + |