| Index: test/cctest/compiler/test-run-intrinsics.cc
|
| diff --git a/test/cctest/compiler/test-run-intrinsics.cc b/test/cctest/compiler/test-run-intrinsics.cc
|
| index 1fa37748c6753d5e0b64705bc5cb0100088d0d1e..ce449075c0634dd0cafacbd59a1415d1ab529fe3 100644
|
| --- a/test/cctest/compiler/test-run-intrinsics.cc
|
| +++ b/test/cctest/compiler/test-run-intrinsics.cc
|
| @@ -128,18 +128,6 @@ TEST(IsMinusZero) {
|
| }
|
|
|
|
|
| -TEST(IsNonNegativeSmi) {
|
| - FunctionTester T("(function(a) { return %_IsNonNegativeSmi(a); })", flags);
|
| -
|
| - T.CheckTrue(T.Val(1));
|
| - T.CheckFalse(T.Val(1.1));
|
| - T.CheckFalse(T.Val(-0.0));
|
| - T.CheckFalse(T.Val(-2));
|
| - T.CheckFalse(T.Val(-2.3));
|
| - T.CheckFalse(T.undefined());
|
| -}
|
| -
|
| -
|
| TEST(IsObject) {
|
| FunctionTester T("(function(a) { return %_IsObject(a); })", flags);
|
|
|
|
|