summaryrefslogtreecommitdiff
path: root/test/wasm_backend/i64.load32_u.cpp
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2019-11-26 18:05:09 -0800
committerGitHub <noreply@github.com>2019-11-26 18:05:09 -0800
commitd15fe879834b0c58d2d4d8526cb428990f7b50a7 (patch)
treee7e05d655cdad2cb0f56b91f723207e430a02e47 /test/wasm_backend/i64.load32_u.cpp
parent5c81d48c70e62e11d9a8fd0fd8231fac10c3bf29 (diff)
downloadbinaryen-d15fe879834b0c58d2d4d8526cb428990f7b50a7.tar.gz
binaryen-d15fe879834b0c58d2d4d8526cb428990f7b50a7.tar.bz2
binaryen-d15fe879834b0c58d2d4d8526cb428990f7b50a7.zip
Remove vanilla tests (#2482)
These have not been used in years and seem outdated.
Diffstat (limited to 'test/wasm_backend/i64.load32_u.cpp')
-rw-r--r--test/wasm_backend/i64.load32_u.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/wasm_backend/i64.load32_u.cpp b/test/wasm_backend/i64.load32_u.cpp
deleted file mode 100644
index a53c93d86..000000000
--- a/test/wasm_backend/i64.load32_u.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdint.h>
-#include <stdio.h>
-
-volatile uint64_t x = 0x0101010101010101;
-volatile uint32_t u = 0xfefefefe;
-
-int main(void)
-{
- putchar('a' + (x >> 60));
-
- x = u; // i64.load32_u
-
- putchar('A' + (x >> 60));
- putchar('\n');
- return 0;
-}