From d15fe879834b0c58d2d4d8526cb428990f7b50a7 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Tue, 26 Nov 2019 18:05:09 -0800 Subject: Remove vanilla tests (#2482) These have not been used in years and seem outdated. --- test/wasm_backend/i64.load32_u.cpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 test/wasm_backend/i64.load32_u.cpp (limited to 'test/wasm_backend/i64.load32_u.cpp') 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 -#include - -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; -} -- cgit v1.2.3