Chromium Code Reviews| Index: test/mjsunit/asm/math-clz32.js |
| diff --git a/test/mjsunit/asm/math-clz32.js b/test/mjsunit/asm/math-clz32.js |
| index 42dcf465758d6e270252f6fba6b834855bf37a88..54a42389e45c2a964533b98ecc89a458cd93d6a0 100644 |
| --- a/test/mjsunit/asm/math-clz32.js |
| +++ b/test/mjsunit/asm/math-clz32.js |
| @@ -10,8 +10,8 @@ var f = (function Module(stdlib) { |
| var clz32 = stdlib.Math.clz32; |
| function f(a) { |
| - a = a >>> 0; |
| - return clz32(a)|0; |
| + a = a | 0; |
| + return clz32(a >>> 0) | 0; |
| } |
| return f; |