wasmer/tests/emscripten_resources/emtests/closebitcasts.c
2020-04-02 16:51:58 -07:00

40 lines
851 B
C

/*
* Copyright 2013 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <stdio.h>
int main(int argc, char **argv) {
float x = argc%17, y = (argc+1)*(argc+2)*(argc+3)*(argc+4)*(argc*5);
y *= 1<<30;
y *= -13;
if (argc == 17) { x++; y--; }
int *xi = (int*)&x;
int *yi = (int*)&y;
int z = *xi - *yi;
while (z % 15) {
z++;
}
printf("!%d\n", z);
double xd = x, yd = y;
yd = yd*yd;
yd = yd*yd;
int *xl = (int*)&xd;
int *xh = &((int*)&xd)[1];
int *yl = (int*)&yd;
int *yh = &((int*)&yd)[1];
int l = *xl - *yl;
int h = *xh - *yh;
while (l % 15) {
l++;
h += 3;
}
printf("%d,%d!\n", l, h);
return 0;
}