aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-10-30 13:14:26 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-10-30 13:14:26 -0700
commita4b5ac5a0b7b705d89def4fb447f36cbe04d5789 (patch)
tree1f1ca7f2fc08904d22ff90fd6f4e004ba10449a9 /tests
parent97f20af483140174e96385f142df43d7251cfccb (diff)
begin to add emscripten_float32x4_signmask
Diffstat (limited to 'tests')
-rw-r--r--tests/test_core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index b421659c..6857d803 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -8705,6 +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));
}
return 0;