Wrap at 80 cols

llvm-svn: 19121
This commit is contained in:
Misha Brukman 2004-12-23 21:17:41 +00:00
parent dee41307dc
commit e50986b39f
1 changed files with 2 additions and 1 deletions

View File

@ -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() &&