File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
llvm/include/llvm/CodeGen/GlobalISel Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,8 @@ m_GFCstOrSplat(std::optional<FPValueAndVReg> &FPValReg) {
193193// / Matcher for a specific constant value.
194194struct 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.
221222struct 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 );
You can’t perform that action at this time.
0 commit comments