diff options
Diffstat (limited to 'test/wasm_backend/i64.load32_u.cpp')
-rw-r--r-- | test/wasm_backend/i64.load32_u.cpp | 16 |
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; -} |