forked from OSchip/llvm-project
parent
7254c25fad
commit
223004cd12
|
@ -1091,7 +1091,7 @@ bool InstCombiner::SimplifyDemandedBits(Value *V, uint64_t DemandedMask,
|
|||
|
||||
// If the top bit of the output is demanded, demand everything from the
|
||||
// input. Otherwise, we demand all the input bits except NLZ top bits.
|
||||
uint64_t InDemandedBits = ~0ULL >> 64-BitWidth+NLZ;
|
||||
uint64_t InDemandedBits = ~0ULL >> (64-BitWidth+NLZ);
|
||||
|
||||
// Find information about known zero/one bits in the input.
|
||||
if (SimplifyDemandedBits(I->getOperand(0), InDemandedBits,
|
||||
|
|
|
@ -147,9 +147,6 @@
|
|||
<File
|
||||
RelativePath="..\..\lib\Transforms\Instrumentation\TraceBasicBlocks.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lib\Transforms\Instrumentation\TraceValues.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="IPO"
|
||||
|
|
|
@ -290,9 +290,6 @@
|
|||
<File
|
||||
RelativePath="..\..\include\llvm\PassManager.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lib\VMCore\PassManagerT.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\include\llvm\PassSupport.h">
|
||||
</File>
|
||||
|
|
Loading…
Reference in New Issue