Index: runtime/vm/runtime_entry_arm64.cc |
diff --git a/runtime/vm/runtime_entry_arm64.cc b/runtime/vm/runtime_entry_arm64.cc |
index f3e98bc6d6a652e2ec0fed0020797477482ef6d5..2186fc36d6edc8128f158e0297140eead063d76e 100644 |
--- a/runtime/vm/runtime_entry_arm64.cc |
+++ b/runtime/vm/runtime_entry_arm64.cc |
@@ -25,8 +25,7 @@ uword RuntimeEntry::GetEntryPoint() const { |
// Redirection to leaf runtime calls supports a maximum of 4 arguments passed |
// in registers (maximum 2 double arguments for leaf float runtime calls). |
ASSERT(argument_count() >= 0); |
- ASSERT(!is_leaf() || |
- (!is_float() && (argument_count() <= 4)) || |
+ ASSERT(!is_leaf() || (!is_float() && (argument_count() <= 4)) || |
(argument_count() <= 2)); |
Simulator::CallKind call_kind = |
is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall |