reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-readobj/ELFDumper.cpp
 3069   if (Type >= SHT_LOOS && Type <= SHT_HIOS)
 3069   if (Type >= SHT_LOOS && Type <= SHT_HIOS)
 3070     return "LOOS+0x" + to_hexString(Type - SHT_LOOS);
 3071   else if (Type >= SHT_LOPROC && Type <= SHT_HIPROC)
 3071   else if (Type >= SHT_LOPROC && Type <= SHT_HIPROC)
 3072     return "LOPROC+0x" + to_hexString(Type - SHT_LOPROC);
 3073   else if (Type >= SHT_LOUSER && Type <= SHT_HIUSER)
 3073   else if (Type >= SHT_LOUSER && Type <= SHT_HIUSER)
 3074     return "LOUSER+0x" + to_hexString(Type - SHT_LOUSER);
 3075   return "0x" + to_hexString(Type) + ": <unknown>";