Skip to content

Commit 5c367b7

Browse files
jurahularsenm
andauthored
Update llvm/utils/TableGen/CompressInstEmitter.cpp
Co-authored-by: Matt Arsenault <[email protected]>
1 parent 927fac1 commit 5c367b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/utils/TableGen/CompressInstEmitter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,8 +590,8 @@ void CompressInstEmitter::emitCompressInstEmitter(raw_ostream &OS,
590590
llvm::stable_sort(CompressPatterns, [EType](const CompressPat &LHS,
591591
const CompressPat &RHS) {
592592
if (EType == EmitterType::Compress || EType == EmitterType::CheckCompress)
593-
return (LHS.Source.getName() < RHS.Source.getName());
594-
return (LHS.Dest.getName() < RHS.Dest.getName());
593+
return LHS.Source.getName() < RHS.Source.getName();
594+
return LHS.Dest.getName() < RHS.Dest.getName();
595595
});
596596

597597
// A list of MCOperandPredicates for all operands in use, and the reverse map.

0 commit comments

Comments
 (0)