Fix signed/unsigned comparison warning

llvm-svn: 2350
This commit is contained in:
Chris Lattner 2002-04-28 04:49:43 +00:00
parent 17e72e9bc3
commit 503a3fcb42
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ void FunctionDSGraph::computeClosure(const DataStructure &DS) {
GlobalDSNode *FGDN = cast<GlobalDSNode>(CN->getArgValues(0)[0].Node);
Function *F = cast<Function>(FGDN->getGlobal());
if (NumInlines++ == InlineLimit) { // CUTE hack huh?
if ((int)NumInlines++ == InlineLimit) { // CUTE hack huh?
cerr << "Infinite (?) recursion halted\n";
cerr << "Not inlining: " << F->getName() << "\n";
CN->dump();