"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "e483d87bd93d1dc67784492e48e46135ec0b1b09"
Devang Patel
authored
Do not treat beginning of inlined scope as beginning of normal function scope if the location info is missing. Insetad of doing ... if (inlined_subroutine && known_location) DW_TAG_inline_subroutine else DW_TAG_subprogram do if (inlined_subroutine) { if (known_location) DW_TAG_inline_subroutine } else { DW_TAG_subprogram } llvm-svn: 69300