diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-05-29 16:39:17 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-05-29 16:39:17 -0700 |
commit | f33f1dbbee7b3f95d8437f1ee60c9075013858b6 (patch) | |
tree | f0f7a4bc5cd7d948f4285298b3b3930f30cc0185 /test/hello_libcxx.cpp | |
parent | 1715b4a1ec845f1dd6b08f48a599f346beb0f758 (diff) | |
parent | 44aeb85b2fa2c743e2d0f7e00349f99cfcbc7639 (diff) | |
download | binaryen-f33f1dbbee7b3f95d8437f1ee60c9075013858b6.tar.gz binaryen-f33f1dbbee7b3f95d8437f1ee60c9075013858b6.tar.bz2 binaryen-f33f1dbbee7b3f95d8437f1ee60c9075013858b6.zip |
Merge pull request #550 from WebAssembly/dfe-nice
Duplicate function elimination
Diffstat (limited to 'test/hello_libcxx.cpp')
-rw-r--r-- | test/hello_libcxx.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/hello_libcxx.cpp b/test/hello_libcxx.cpp new file mode 100644 index 000000000..445c5513b --- /dev/null +++ b/test/hello_libcxx.cpp @@ -0,0 +1,8 @@ +#include <iostream> + +int main() +{ + std::cout << "hello, world!" << std::endl; + return 0; +} + |