search for: stomper

Displaying 3 results from an estimated 3 matches for "stomper".

Did you mean: stomped
2009 Apr 21
0
[LLVMdev] Iterating over all uses of a Function
On Apr 21, 2009, at 4:33 AM, Mikhail Glushenkov wrote: > Hi, > > I try to iterate over all uses of a Function with the following > code (simplified): This should work. Perhaps you have a memory stomper problem? -Chris > > > for (Value::use_iterator UI = F->use_begin(), UE = F->use_end(); > UI != UE; ++UI) { > > if (CallInst* I = dyn_cast<CallInst>(*UI)) { > // do something interesting > } > } > > This works on Linux,...
2002 Jun 18
0
Printing via Wine
Hi all, I am working hard at moving all of my desktop to windows. Two apps I have yet to find good replacements for are a CD Label program (CD Stomper) and DeLorme STreet Atlas 6. Both install fine and seem to work great. Except when it comes to printing. We have three printers, a large networked ps printer, and two hp's. We use lpr and have all three working with no issues in linux. We followed the wine user guide, and setup port redirects...
2009 Apr 21
4
[LLVMdev] Iterating over all uses of a Function
Hi, I try to iterate over all uses of a Function with the following code (simplified): for (Value::use_iterator UI = F->use_begin(), UE = F->use_end(); UI != UE; ++UI) { if (CallInst* I = dyn_cast<CallInst>(*UI)) { // do something interesting } } This works on Linux, but on Windows the dyn_cast fails, even though the only use of F in that