Displaying 3 results from an estimated 3 matches for "insi".
Did you mean:
ins
2012 Oct 31
1
[LLVMdev] Lifetime analysis of variables within a module
...of every function call (and every BasicBlock).
By creating a pass inheriting from ModulePass I can reach up to here:
virtual bool runOnFunction(Function &F) {
...
for (Function::iterator bbi = F.begin(), bbf = F.end(); bbi != bbf;
bbi++)
{
...
for (BasicBlock::iterator insi = bbi->begin(), insf = bbi->end();
insi != insf; insi++)
{
...
for (User::op_iterator opi = insi->op_begin(), opf =
insi->op_end(); opi != opf; opi++)
{
if(isa<Instruction>(opi) || isa<Argument>(opi))...
2006 Jun 28
9
Rails Borked After 1.1.3 Install?
I installed 1.1.3 on my OS X Tiger machine and now I''m seeing very strange
results.
When hitting a controller action, I am told that perfectly valid methods are
not there:
NoMethodError (undefined method `find'' for VideoTrack:Module)
Huh? Here''s the code in question:
VideoTrack.find(:all, :conditions => "featured_video = 1", :order =>
2006 Oct 17
1
Routing Problem
Hi,
I have a folder structure see below which basically has a fodler for the
main pages of the site(main) and another folder which contains a
ajax_scaffold grid to allow a user to view/sort/download documents:
views
main
documents
Controllers
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are