[LLVMdev] Plea for help
Chris Lattner
sabre at nondot.org
Tue May 4 10:23:02 PDT 2004
On Tue, 4 May 2004, Chris Lattner wrote:
> std::cerr << "Created interval for reg " << reg << " weight = " << weight
> << "\n";
> assert(r < 1024 || weight > 1 && "physreg or weight incorrectly computed!");
Whoops, that should have parens:
assert((r < 1024 || weight > 1) && "physreg or weight incorrectly computed!");
Sorry about that. :)
-Chris
--
http://llvm.cs.uiuc.edu/
http://www.nondot.org/~sabre/Projects/
More information about the llvm-dev
mailing list