search for: blocka

Displaying 2 results from an estimated 2 matches for "blocka".

Did you mean: block
2010 Jul 10
2
PHP can't insert - Can someone please help
...ys, I am making another module for Voicemail. I have three fields in a POST form that have to be connected together to make it a single 10 digit number but there is something wrong in my syntax probably. $npaa = "('$_POST[anpa]')"; $nxxa = "('$_POST[anxx]')"; $blocka = "('$_POST[ablock]')"; *$grplist = $npaa.$nxxa.$blocka;* $sql="INSERT INTO findmefollow(grpnum, strategy, grptime, grppre, grplist, annmsg_id, postdest, dring, needsconf, remotealert_id, toolate_id, ringing, pre_ring) VALUES ('$_POST[grpnum]','ringall','...
2005 Apr 20
4
[LLVMdev] "Refactoring" Basic Blocks into a new function
...gic" function calls (begin() and end()). In order to locate these calls, I am currently iterating over the basic blocks in a function using the iterator. Is it possible that I could get the blocks "out of order" with respect to the control flow? For example, if I have this code: blockA if ( blockB ) { blockC } else { blockD } blockE I expect to get the blocks in alphabetical order. I can see that it is possible that LLVM could give them to me in an arbitrary order. If so, it will complicate how I need to locate the basic blocks that compose "code B" in my example...