1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Remove uses of uint32_t in favor of 'unsigned' for better

compatibility with cygwin.  Patch by Jay Foad!

llvm-svn: 62695
This commit is contained in:
Chris Lattner 2009-01-21 18:09:24 +00:00
parent d021a20409
commit ca83aa289a
2 changed files with 194 additions and 194 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1284,7 +1284,7 @@ bool InstCombiner::SimplifyDemandedBits(Value *V, APInt DemandedMask,
KnownZero2, KnownOne2, Depth+1))
return true;
uint32_t Leaders = KnownZero2.countLeadingOnes();
unsigned Leaders = KnownZero2.countLeadingOnes();
if (SimplifyDemandedBits(I->getOperand(1), AllOnes,
KnownZero2, KnownOne2, Depth+1))
return true;