mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Change relocation API to be per section.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141376 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -27,8 +27,8 @@ void LLVMDisposeObjectFile(LLVMObjectFileRef ObjectFile) {
|
||||
}
|
||||
|
||||
LLVMSectionIteratorRef LLVMGetSections(LLVMObjectFileRef ObjectFile) {
|
||||
ObjectFile::section_iterator SI = unwrap(ObjectFile)->begin_sections();
|
||||
return wrap(new ObjectFile::section_iterator(SI));
|
||||
section_iterator SI = unwrap(ObjectFile)->begin_sections();
|
||||
return wrap(new section_iterator(SI));
|
||||
}
|
||||
|
||||
void LLVMDisposeSectionIterator(LLVMSectionIteratorRef SI) {
|
||||
|
Reference in New Issue
Block a user