draperlaboratory / fracture

an architecture-independent decompiler to LLVM IR
Other
385 stars 47 forks source link

Dynamic symbols for dummy object file #24

Open skintigh opened 10 years ago

skintigh commented 10 years ago

./tools/dish/DummyObjectFile.cpp:59

    //TODO: Implement?
    report_fatal_error("Dynamic symbols unimplemented in DummyObjectFile");
  }

  section_iterator DummyObjectFile::begin_sections() const {
    DataRefImpl ret;
    ret.p = intptr_t(this->Data);
    return section_iterator(SectionRef(ret, this));
  }

  section_iterator DummyObjectFile::end_sections() const {