[vm/compiler] Fix a typo introduced by 325a8fee4d6785b1892ca6fce06e00456dc0087

It essentially disabled AOT optimizations of typed array accesses.

Change-Id: I02e1d89bbf0f266a88c6497228e23168858ed957
Reviewed-on: https://dart-review.googlesource.com/72661
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Vyacheslav Egorov <vegorov@google.com>
diff --git a/runtime/vm/compiler/backend/inliner.cc b/runtime/vm/compiler/backend/inliner.cc
index f738360..c6259ac 100644
--- a/runtime/vm/compiler/backend/inliner.cc
+++ b/runtime/vm/compiler/backend/inliner.cc
@@ -2774,7 +2774,7 @@
   // For Dart2, both issues are resolved in the inlined code.
   if (array_cid == kDynamicCid) {
     ASSERT(call->IsStaticCall());
-    if (flow_graph->isolate()->can_use_strong_mode_types()) {
+    if (!flow_graph->isolate()->can_use_strong_mode_types()) {
       return false;
     }
   }