diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-09-22 11:14:39 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-09-22 11:14:39 +0000 |
commit | a9cb538a74b511aa56e4237dbdfca57e8dcc57cc (patch) | |
tree | 7178bd55ae00a47c72eb79a8c23241f283095cce /llvm/lib/Transforms/Scalar/Float2Int.cpp | |
parent | 84965031a75345167c6ec2cf5e5c133869a43b47 (diff) | |
download | llvm-a9cb538a74b511aa56e4237dbdfca57e8dcc57cc.zip llvm-a9cb538a74b511aa56e4237dbdfca57e8dcc57cc.tar.gz llvm-a9cb538a74b511aa56e4237dbdfca57e8dcc57cc.tar.bz2 |
Reformat blank lines.
llvm-svn: 248263
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Float2Int.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/Float2Int.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/Float2Int.cpp b/llvm/lib/Transforms/Scalar/Float2Int.cpp index b79b12a..a366851 100644 --- a/llvm/lib/Transforms/Scalar/Float2Int.cpp +++ b/llvm/lib/Transforms/Scalar/Float2Int.cpp @@ -227,7 +227,7 @@ void Float2Int::walkBackwards(const SmallPtrSetImpl<Instruction*> &Roots) { seen(I, unknownRange()); break; } - + for (Value *O : I->operands()) { if (Instruction *OI = dyn_cast<Instruction>(O)) { // Unify def-use chains if they interfere. @@ -400,7 +400,7 @@ bool Float2Int::validateAndTransform() { R.isFullSet() || R.isSignWrappedSet()) continue; assert(ConvertedToTy && "Must have set the convertedtoty by this point!"); - + // The number of bits required is the maximum of the upper and // lower limits, plus one so it can be signed. unsigned MinBW = std::max(R.getLower().getMinSignedBits(), |