| 1003 | } |
| 1004 | |
| 1005 | FunctionPtr Function::addToModule ( Module & mod, SideEffects seFlags ) { |
| 1006 | setSideEffects(seFlags); |
| 1007 | if (!mod.addFunction(this)) { |
| 1008 | DAS_FATAL_ERROR("addExtern(%s) failed in module %s\n", name.c_str(), mod.name.c_str()); |
| 1009 | } |
| 1010 | return this; |
| 1011 | } |
| 1012 | |
| 1013 | Function * Function::getOriginPtr() const { |
| 1014 | if ( fromGeneric ) { |
no test coverage detected