format of DW_AT_high_pc is changed to DW_FORM_data4
Change-Id: Icbd9f77f376af5e24bddb6bf076fa3ef46d6a59f
Signed-off-by: jungwook.ryu <jungwook.ryu@samsung.com>
IFunctionScope funcScope) {
if (lexicalScope instanceof LexicalBlockScope) {
if (line.getLowAddress().compareTo(lexicalScope.getHighAddress()) < 0
- && line.getLowAddress().compareTo(lexicalScope.getLowAddress()) > 0) {
+ && line.getLowAddress().compareTo(lexicalScope.getLowAddress()) >= 0) {
Collection<IVariable> variables = ((ILexicalBlockScope) lexicalScope).getVariablesInTree();
return getVariableInfo(variables, varName, line, true, funcScope);
}