Displaying 2 results from an estimated 2 matches for "definedexternally".
2005 Jul 05
0
[LLVMdev] How do you determine whether a function is definedexternally to a module ?
On Sun, 3 Jul 2005, Aaron Gray wrote:
>> Something like this should work:
>>
>> for (Module::iterator F = M->begin(), E = M->end(); F != E; ++F)
>> if (F->isExternal())
>> ... Function* F is external! ...
>
> This is not working. For some reason there is a BasicBlock present on
> undefined functions !
Which functions in particular are you
2005 Jul 03
4
[LLVMdev] How do you determine whether a function is definedexternally to a module ?
> Something like this should work:
>
> for (Module::iterator F = M->begin(), E = M->end(); F != E; ++F)
> if (F->isExternal())
> ... Function* F is external! ...
This is not working. For some reason there is a BasicBlock present on
undefined functions !
I am compiling the examples from llvm/test/feature, about 28 out of 34
assemble fine. Just cannot seem to get