1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix 80 col violation

llvm-svn: 42976
This commit is contained in:
Chris Lattner 2007-10-15 05:30:27 +00:00
parent 28beae4a4f
commit 828830d360

View File

@ -538,9 +538,9 @@ public:
} }
/// ShrinkDemandedConstant - Check to see if the specified operand of the /// ShrinkDemandedConstant - Check to see if the specified operand of the
/// specified instruction is a constant integer. If so, check to see if there /// specified instruction is a constant integer. If so, check to see if
/// are any bits set in the constant that are not demanded. If so, shrink the /// there are any bits set in the constant that are not demanded. If so,
/// constant and return true. /// shrink the constant and return true.
bool ShrinkDemandedConstant(SDOperand Op, uint64_t Demanded); bool ShrinkDemandedConstant(SDOperand Op, uint64_t Demanded);
}; };