diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-09-22 11:14:12 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-09-22 11:14:12 +0000 |
commit | 84965031a75345167c6ec2cf5e5c133869a43b47 (patch) | |
tree | b075480051128da15f870bf8cadea3fb550a7591 /llvm/lib/Analysis/DemandedBits.cpp | |
parent | 70ad98aca403cd1cb75fb326517e528b589808a4 (diff) | |
download | llvm-84965031a75345167c6ec2cf5e5c133869a43b47.zip llvm-84965031a75345167c6ec2cf5e5c133869a43b47.tar.gz llvm-84965031a75345167c6ec2cf5e5c133869a43b47.tar.bz2 |
Reformat comment lines.
llvm-svn: 248262
Diffstat (limited to 'llvm/lib/Analysis/DemandedBits.cpp')
-rw-r--r-- | llvm/lib/Analysis/DemandedBits.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DemandedBits.cpp b/llvm/lib/Analysis/DemandedBits.cpp index 7ca1881..a8e36dd 100644 --- a/llvm/lib/Analysis/DemandedBits.cpp +++ b/llvm/lib/Analysis/DemandedBits.cpp @@ -1,4 +1,4 @@ -//===---- DemandedBits.cpp - Determine demanded bits -----------------------===// +//===---- DemandedBits.cpp - Determine demanded bits ----------------------===// // // The LLVM Compiler Infrastructure // @@ -315,7 +315,7 @@ bool DemandedBits::runOnFunction(Function& F) { !isAlwaysLive(UserI)) { AB = APInt(BitWidth, 0); } else { - // If all bits of the output are dead, then all bits of the input + // If all bits of the output are dead, then all bits of the input // Bits of each operand that are used to compute alive bits of the // output are alive, all others are dead. determineLiveOperandBits(UserI, I, OI.getOperandNo(), AOut, AB, |