Fix typo inversion in GenerateLastValueLinear

In https://android-review.googlesource.com/c/platform/art/+/2162257/3..5
we inverted an if clause but there was a typo when doing so and the
inversion has to be fixed.

Test: art/test/testrunner/testrunner.py --host --64 --optimizing -b
Change-Id: I2ac8f64b832715dede2f7ccca627a0ef102dc0c2
diff --git a/compiler/optimizing/induction_var_range.cc b/compiler/optimizing/induction_var_range.cc
index cc62da8..7f85483 100644
--- a/compiler/optimizing/induction_var_range.cc
+++ b/compiler/optimizing/induction_var_range.cc
@@ -1128,7 +1128,7 @@
   DataType::Type type = info->type;
   // Avoid any narrowing linear induction or any type mismatch between the linear induction and the
   // trip count expression.
-  if (HInductionVarAnalysis::IsNarrowingLinear(info) && trip->type == info->type) {
+  if (HInductionVarAnalysis::IsNarrowingLinear(info) || trip->type != type) {
     return false;
   }