Displaying 2 results from an estimated 2 matches for "stringtableoffset".
2011 Oct 18
3
[LLVMdev] non-POD type with llvm-objdump
...gned(symbol->NumberOfAuxSymbols) << ") "
<< "0x" << format("%08x", symbol->Value) << " "
<< name << "\n";
Are trying to call the format function with
struct coff_symbol {
struct StringTableOffset {
support::ulittle32_t Zeroes;
support::ulittle32_t Offset;
};
union {
char ShortName[8];
StringTableOffset Offset;
} Name;
support::ulittle32_t Value;
support::little16_t SectionNumber;
struct {
support::ulittle8_t BaseType;
support::ulittle8_t ComplexType;...
2011 Oct 19
0
[LLVMdev] non-POD type with llvm-objdump
...fAuxSymbols) << ") "
> << "0x" << format("%08x", symbol->Value) << " "
> << name << "\n";
> Are trying to call the format function with
> struct coff_symbol {
> struct StringTableOffset {
> support::ulittle32_t Zeroes;
> support::ulittle32_t Offset;
> };
> union {
> char ShortName[8];
> StringTableOffset Offset;
> } Name;
> support::ulittle32_t Value;
> support::little16_t SectionNumber;
> struct {
> support::ulittle...