ART: fix highest PC values removal in SrcMap.DeltaFormat()

The conversion from absolute to offset Line Number Table values mistakenly
removed all values less than the highest one, which resulted in clearing
all the table.

The fix is to use the reverse condition finding the highest correct PC
value in the sorted table.

Change-Id: I9850c2c46c1910b809043dd8163eb930a7849ded
Signed-off-by: Yevgeny Rouban <yevgeny.y.rouban@intel.com>
diff --git a/compiler/compiled_method.h b/compiler/compiled_method.h
index 3e34144..cc46b92 100644
--- a/compiler/compiled_method.h
+++ b/compiler/compiled_method.h
@@ -154,7 +154,7 @@
       // get rid of the highest values
       size_t i = size() - 1;
       for (; i > 0 ; i--) {
-        if ((*this)[i].from_ >= highest_pc) {
+        if ((*this)[i].from_ < highest_pc) {
           break;
         }
       }