Home | History | Annotate | Download | only in lli

Lines Matching refs:Function

92   EntryFunc("entry-function",
93 cl::desc("Specify the entry function (default = 'main') "
95 cl::value_desc("function"),
156 // main Driver function
254 // Call the main function from M as if its signature were:
259 Function *EntryFn = Mod->getFunction(EntryFunc);
261 errs() << '\'' << EntryFunc << "\' function not found in module.\n";
266 // function later on to make an explicit call, so get the function now.
279 Function *Fn = &*I;
293 if (Function *ExitF = dyn_cast<Function>(Exit)) {