diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-12-23 21:17:41 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-12-23 21:17:41 +0000 |
commit | 4d099f7d6c35bed19a0658c121afda790df01f88 (patch) | |
tree | e2bd2d77acd4740f097ffaef09e920dc82ffe296 /lib/Analysis/ValueNumbering.cpp | |
parent | 4618957d0d6eb015bbc5add5c22e004d3e4390e0 (diff) |
Wrap at 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19121 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ValueNumbering.cpp')
-rw-r--r-- | lib/Analysis/ValueNumbering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/ValueNumbering.cpp b/lib/Analysis/ValueNumbering.cpp index 2e1174b69e..b3a8dc8b3d 100644 --- a/lib/Analysis/ValueNumbering.cpp +++ b/lib/Analysis/ValueNumbering.cpp @@ -161,7 +161,8 @@ void BVNImpl::handleBinaryInst(Instruction &I) { // using a brute force comparison. This is useful for instructions with an // arbitrary number of arguments. // -static inline bool IdenticalComplexInst(const Instruction *I1, const Instruction *I2) { +static inline bool IdenticalComplexInst(const Instruction *I1, + const Instruction *I2) { assert(I1->getOpcode() == I2->getOpcode()); // Equal if they are in the same function... return I1->getParent()->getParent() == I2->getParent()->getParent() && |