aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-10-30 21:11:06 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-10-30 21:11:06 -0700
commit819c105c234a89e2d0936c1d7218612db43dd56c (patch)
tree926ea1c8d6323097fc07f8d7b35b27db473c1b2f /tests
parent5dfe077ac92295cae2396fa06866b366defa8b23 (diff)
remove finalizeParam and properly use finalizeLLVMParameter everywhere
Diffstat (limited to 'tests')
-rw-r--r--tests/test_core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 6857d803..68f5bef7 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -8705,7 +8705,7 @@ int main(int argc, char **argv) {
c = _mm_set_ps(9.0, 4.0, 0, -9.0);
d = _mm_set_ps(10.0, 14.0, -12, -2.0);
printf("6floats! %d, %d, %d, %d %d, %d, %d, %d\n", (int)c[0], (int)c[1], (int)c[2], (int)c[3], (int)d[0], (int)d[1], (int)d[2], (int)d[3]);
- //printf("7calcs: %d\n", emscripten_float32x4_signmask(c));
+ printf("7calcs: %d\n", emscripten_float32x4_signmask(c)); // TODO: just not just compilation but output as well
}
return 0;