Skip to content

Commit

Permalink
[Object/ELF] Don't confuse isDefined() and isCommon.
Browse files Browse the repository at this point in the history
Reported by Rafael Espindola. Pointy-hat to me.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239241 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dcci committed Jun 7, 2015
1 parent 4514db2 commit 14c78fb
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions include/llvm/Object/ELFTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,11 @@ struct Elf_Sym_Impl : Elf_Sym_Base<ELFT> {

bool isAbsolute() const { return st_shndx == ELF::SHN_ABS; }
bool isCommon() const {
return !isUndefined() &&
!(st_shndx >= ELF::SHN_LORESERVE && st_shndx < ELF::SHN_ABS);
return getType() == ELF::STT_COMMON || st_shndx == ELF::SHN_COMMON;
}
bool isDefined() const {
return !isUndefined() &&
(!(st_shndx >= ELF::SHN_LORESERVE &&
st_shndx <= ELF::SHN_HIRESERVE) ||
st_shndx == ELF::SHN_XINDEX);
!(st_shndx >= ELF::SHN_LORESERVE && st_shndx < ELF::SHN_ABS);
}
bool isProcessorSpecific() const {
return st_shndx >= ELF::SHN_LOPROC && st_shndx <= ELF::SHN_HIPROC;
Expand Down

0 comments on commit 14c78fb

Please sign in to comment.