From f355549f7faa96f976284e178a7fbe5ac109350a Mon Sep 17 00:00:00 2001 From: marsonya Date: Tue, 9 Mar 2021 16:26:09 +0530 Subject: [PATCH] test: add missing math function to test-arm-math-illegal-instruction.js --- test/parallel/test-arm-math-illegal-instruction.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parallel/test-arm-math-illegal-instruction.js b/test/parallel/test-arm-math-illegal-instruction.js index 2c4cdd263018a0..40da4bbadf4f32 100644 --- a/test/parallel/test-arm-math-illegal-instruction.js +++ b/test/parallel/test-arm-math-illegal-instruction.js @@ -15,6 +15,7 @@ Math.atan(-0.5); Math.atanh(-0.5); Math.cbrt(-0.5); Math.ceil(-0.5); +Math.clz32(-0.5); Math.cos(-0.5); Math.cosh(-0.5); Math.exp(-0.5);