Skip to content
Snippets Groups Projects
Commit fcde4864 authored by whh8b's avatar whh8b
Browse files

Rename PlopAddress to AddressDollop.

parent 491913d7
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ class ZiprPluginManager_t : public ZiprPluginInterface_t
virtual bool DoesPluginPlop(libIRDB::Instruction_t*,DLFunctionHandle_t&);
virtual bool DoesPluginPlace(const RangeAddress_t &, const Dollop_t &, Range_t &, DLFunctionHandle_t &);
virtual bool DoesPluginAddress(const Dollop_t *, Range_t &, DLFunctionHandle_t &);
private:
void open_plugins
......
......@@ -81,13 +81,13 @@ void ZiprPluginManager_t::CallbackLinkingEnd()
dispatch_to(CallbackLinkingEnd);
}
bool ZiprPluginManager_t::DoesPluginPlace(const RangeAddress_t &jump, const Dollop_t &dollop, Range_t &place, DLFunctionHandle_t &placer)
bool ZiprPluginManager_t::DoesPluginAddress(const Dollop_t *dollop, Range_t &place, DLFunctionHandle_t &placer)
{
DLFunctionHandleSet_t::iterator it=m_handleList.begin();
for(m_handleList.begin();it!=m_handleList.end();++it)
{
ZiprPluginInterface_t* zpi=(ZiprPluginInterface_t*)*it;
if (Must == zpi->PlopAddress(jump, dollop, place))
if (Must == zpi->AddressDollop(dollop, place))
{
placer = zpi;
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment