Skip to content

Commit 3545590

Browse files
committed
formatting
1 parent 57005c0 commit 3545590

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ m_GFCstOrSplat(std::optional<FPValueAndVReg> &FPValReg) {
193193
/// Matcher for a specific constant value.
194194
struct SpecificConstantMatch {
195195
APInt RequestedVal;
196-
SpecificConstantMatch(const APInt RequestedVal) : RequestedVal(RequestedVal) {}
196+
SpecificConstantMatch(const APInt RequestedVal)
197+
: RequestedVal(RequestedVal) {}
197198
bool match(const MachineRegisterInfo &MRI, Register Reg) {
198199
APInt MatchedVal;
199200
if (mi_match(Reg, MRI, m_ICst(MatchedVal))) {
@@ -220,7 +221,8 @@ inline SpecificConstantMatch m_SpecificICst(int64_t RequestedValue) {
220221
/// Matcher for a specific constant splat.
221222
struct SpecificConstantSplatMatch {
222223
APInt RequestedVal;
223-
SpecificConstantSplatMatch(const APInt RequestedVal) : RequestedVal(RequestedVal) {}
224+
SpecificConstantSplatMatch(const APInt RequestedVal)
225+
: RequestedVal(RequestedVal) {}
224226
bool match(const MachineRegisterInfo &MRI, Register Reg) {
225227
return isBuildVectorConstantSplat(Reg, MRI, RequestedVal,
226228
/* AllowUndef */ false);

0 commit comments

Comments
 (0)