diff options
Diffstat (limited to 'compiler/compiled_method.h')
| -rw-r--r-- | compiler/compiled_method.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/compiled_method.h b/compiler/compiled_method.h index 3e34144836..cc46b92dc5 100644 --- a/compiler/compiled_method.h +++ b/compiler/compiled_method.h @@ -154,7 +154,7 @@ class SrcMap FINAL : public std::vector<SrcMapElem> {        // 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;          }        }  |