From 828830d360150c35fd217437c4cb184eb79cfcc3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 15 Oct 2007 05:30:27 +0000 Subject: [PATCH] Fix 80 col violation llvm-svn: 42976 --- include/llvm/Target/TargetLowering.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index e1fa2268d30..f565bd96b97 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); };