search for: d19084af

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

Did you mean: d19084
2010 Feb 26
0
[LLVMdev] RegisterScavenging on targets without subregisters
...SubUsed will always > be false and trip the assert. What's the intended behavior (before I submit > a bug report)? > > > -scooter > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100225/d19084af/attachment.html>
2010 Feb 26
2
[LLVMdev] RegisterScavenging on targets without subregisters
There's an assert at line 192, lib/CodeGen/RegisterScavenging.cpp that appears to get tripped on targets that don't have subregisters defined: bool SubUsed = false; for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); unsigned SubReg = *SubRegs; ++SubRegs) if (isUsed(SubReg)) { SubUsed = true; break; }