diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-30 13:14:26 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-30 13:14:26 -0700 |
commit | a4b5ac5a0b7b705d89def4fb447f36cbe04d5789 (patch) | |
tree | 1f1ca7f2fc08904d22ff90fd6f4e004ba10449a9 /system | |
parent | 97f20af483140174e96385f142df43d7251cfccb (diff) |
begin to add emscripten_float32x4_signmask
Diffstat (limited to 'system')
-rw-r--r-- | system/include/emscripten/vector.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system/include/emscripten/vector.h b/system/include/emscripten/vector.h index ea148f0d..938f2369 100644 --- a/system/include/emscripten/vector.h +++ b/system/include/emscripten/vector.h @@ -4,3 +4,13 @@ typedef float float32x4 __attribute__((__vector_size__(16))); typedef unsigned int uint32x4 __attribute__((__vector_size__(16))); +#ifdef __cplusplus +extern "C" { +#endif + +unsigned int emscripten_float32x4_signmask(float32x4 x); + +#ifdef __cplusplus +} +#endif + |