| Index: runtime/vm/runtime_entry_test.cc
|
| ===================================================================
|
| --- runtime/vm/runtime_entry_test.cc (revision 26826)
|
| +++ runtime/vm/runtime_entry_test.cc (working copy)
|
| @@ -36,7 +36,6 @@
|
| // Arg1: a smi.
|
| // Result: a smi representing arg0 - arg1.
|
| DEFINE_RUNTIME_ENTRY(TestSmiSub, 2) {
|
| - ASSERT(arguments.ArgCount() == kTestSmiSubRuntimeEntry.argument_count());
|
| const Smi& left = Smi::CheckedHandle(arguments.ArgAt(0));
|
| const Smi& right = Smi::CheckedHandle(arguments.ArgAt(1));
|
| // Ignoring overflow in the calculation below.
|
|
|