Skip to content

Commit

Permalink
Remove duplicate entries in emscripten/vector.h after merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
juj committed Aug 17, 2015
1 parent 3d832a2 commit 0ec8e11
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions system/include/emscripten/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ int32x4 emscripten_float64x2_greaterThan(float64x2 __a, float64x2 __b) __attribu
#define emscripten_float64x2_xor(a, b) emscripten_float64x2_fromInt32x4Bits(emscripten_int32x4_xor(emscripten_int32x4_fromFloat64x2Bits((a)), emscripten_int32x4_fromFloat64x2Bits((b))))
float64x2 emscripten_float64x2_select(int32x4 __a, float64x2 __b, float64x2 __c) __attribute__((__nothrow__, __const__));

int32x4 emscripten_int32x4_fromFloat32x4Bits(float32x4 __a) __attribute__((__nothrow__, __const__));
int32x4 emscripten_int32x4_fromFloat32x4(float32x4 __a) __attribute__((__nothrow__, __const__));
int32x4 emscripten_int32x4_fromFloat64x2Bits(float64x2 __a) __attribute__((__nothrow__, __const__));
int32x4 emscripten_int32x4_fromFloat64x2(float64x2 __a) __attribute__((__nothrow__, __const__));

Expand Down Expand Up @@ -109,11 +107,6 @@ int16x8 emscripten_int16x8_and(int16x8 __a, int16x8 __b) __attribute__((__nothro
int16x8 emscripten_int16x8_or(int16x8 __a, int16x8 __b) __attribute__((__nothrow__, __const__));
int16x8 emscripten_int16x8_xor(int16x8 __a, int16x8 __b) __attribute__((__nothrow__, __const__));

int32x4 emscripten_int32x4_not(int32x4 __a) __attribute__((__nothrow__, __const__));
int32x4 emscripten_int32x4_and(int32x4 __a, int32x4 __b) __attribute__((__nothrow__, __const__));
int32x4 emscripten_int32x4_or(int32x4 __a, int32x4 __b) __attribute__((__nothrow__, __const__));
int32x4 emscripten_int32x4_xor(int32x4 __a, int32x4 __b) __attribute__((__nothrow__, __const__));

float32x4 emscripten_float32x4_load1(const void *__p) __attribute__((__nothrow__, __const__));
float32x4 emscripten_float32x4_load2(const void *__p) __attribute__((__nothrow__, __const__));
void emscripten_float32x4_store1(const void *__p, float32x4 __a) __attribute__((__nothrow__));
Expand Down

0 comments on commit 0ec8e11

Please sign in to comment.