forked from OSchip/llvm-project
parent
c31d004ece
commit
2b743c3f8a
|
@ -43,9 +43,8 @@ private:
|
|||
typedef llvm::StringMap<uint8_t> StringSet;
|
||||
|
||||
struct NameAndAttributes {
|
||||
enum name_type { IsFunction, IsData };
|
||||
const char *name;
|
||||
lto_symbol_attributes attributes;
|
||||
uint32_t attributes;
|
||||
};
|
||||
|
||||
llvm::OwningPtr<llvm::Module> _module;
|
||||
|
@ -109,8 +108,7 @@ public:
|
|||
/// index.
|
||||
lto_symbol_attributes getSymbolAttributes(uint32_t index) {
|
||||
if (index < _symbols.size())
|
||||
return _symbols[index].attributes;
|
||||
else
|
||||
return lto_symbol_attributes(_symbols[index].attributes);
|
||||
return lto_symbol_attributes(0);
|
||||
}
|
||||
|
||||
|
@ -118,7 +116,6 @@ public:
|
|||
const char *getSymbolName(uint32_t index) {
|
||||
if (index < _symbols.size())
|
||||
return _symbols[index].name;
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue