Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 112d26e

Browse files
committed
Remove the SIMD signMask polyfill hack.
1 parent edfd9d3 commit 112d26e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Target/JSBackend/CallHandlers.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -454,8 +454,7 @@ DEF_CALL_HANDLER(llvm_cttz_i32, {
454454

455455
// vector ops
456456
DEF_CALL_HANDLER(emscripten_float32x4_signmask, {
457-
// TODO: use signMaskPolyfill explicitly for now, until the builtin signMask is ready.
458-
return getAssign(CI) + getValueAsStr(CI->getOperand(0)) + ".signMaskPolyfill";
457+
return getAssign(CI) + getValueAsStr(CI->getOperand(0)) + ".signMask";
459458
})
460459

461460
#define DEF_BUILTIN_HANDLER(name, to) \

0 commit comments

Comments
 (0)