diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-15 05:30:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-15 05:30:27 +0000 |
commit | 1622768794afca372e55732016dd9c11bd75a9a7 (patch) | |
tree | 7998d30af3b455a6a3dfd44bbf09f889626e6cc6 | |
parent | 6e644736030f09fc9d613f1a6a9b4bd3a6947381 (diff) |
Fix 80 col violation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42976 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index e1fa2268d3..f565bd96b9 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -538,9 +538,9 @@ public: } /// ShrinkDemandedConstant - Check to see if the specified operand of the - /// specified instruction is a constant integer. If so, check to see if there - /// are any bits set in the constant that are not demanded. If so, shrink the - /// constant and return true. + /// specified instruction is a constant integer. If so, check to see if + /// there are any bits set in the constant that are not demanded. If so, + /// shrink the constant and return true. bool ShrinkDemandedConstant(SDOperand Op, uint64_t Demanded); }; |