1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[llvm] Ensure newlines at the end of files (NFC)

This patch eliminates pesky "No newline at end of file" messages from
git diff.
This commit is contained in:
Kazu Hirata 2021-01-10 09:24:56 -08:00
parent 6264d23300
commit 13eee3533c
10 changed files with 10 additions and 10 deletions

View File

@ -83,4 +83,4 @@ public:
}; };
} // namespace llvm } // namespace llvm
#endif // LLVM_FUNCTIONPROPERTIESANALYSIS_H_ #endif // LLVM_FUNCTIONPROPERTIESANALYSIS_H_

View File

@ -42,4 +42,4 @@ public:
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM); PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
}; };
} // namespace llvm } // namespace llvm
#endif // LLVM_ANALYSIS_INLINESIZEESTIMATORANALYSIS_H #endif // LLVM_ANALYSIS_INLINESIZEESTIMATORANALYSIS_H

View File

@ -104,4 +104,4 @@ private:
} // namespace llvm } // namespace llvm
#endif // LLVM_ANALYSIS_MLINLINEADVISOR_H #endif // LLVM_ANALYSIS_MLINLINEADVISOR_H

View File

@ -62,4 +62,4 @@ CGPassBuilderOption getCGPassBuilderOption();
} // namespace llvm } // namespace llvm
#endif // LLVM_CODEGEN_PASSBUILDER_OPTION_H #endif // LLVM_CODEGEN_PASSBUILDER_OPTION_H

View File

@ -85,4 +85,4 @@ FunctionPropertiesPrinterPass::run(Function &F, FunctionAnalysisManager &AM) {
<< "\n"; << "\n";
AM.getResult<FunctionPropertiesAnalysis>(F).print(OS); AM.getResult<FunctionPropertiesAnalysis>(F).print(OS);
return PreservedAnalyses::all(); return PreservedAnalyses::all();
} }

View File

@ -6246,4 +6246,4 @@ LegalizerHelper::LegalizeResult LegalizerHelper::lowerSelect(MachineInstr &MI) {
MIRBuilder.buildOr(DstReg, NewOp1, NewOp2); MIRBuilder.buildOr(DstReg, NewOp1, NewOp2);
MI.eraseFromParent(); MI.eraseFromParent();
return Legalized; return Legalized;
} }

View File

@ -202,4 +202,4 @@ void LiveIntervalCalc::extendToUses(LiveRange &LR, Register Reg,
// reading Reg multiple times. That is OK, extend() is idempotent. // reading Reg multiple times. That is OK, extend() is idempotent.
extend(LR, UseIdx, Reg, Undefs); extend(LR, UseIdx, Reg, Undefs);
} }
} }

View File

@ -167,4 +167,4 @@ def : GINodeEquiv<G_VLSHR, AArch64vlshr>;
// These are patterns that we only use for GlobalISel via the importer. // These are patterns that we only use for GlobalISel via the importer.
def : Pat<(f32 (fadd (vector_extract (v2f32 FPR64:$Rn), (i64 0)), def : Pat<(f32 (fadd (vector_extract (v2f32 FPR64:$Rn), (i64 0)),
(vector_extract (v2f32 FPR64:$Rn), (i64 1)))), (vector_extract (v2f32 FPR64:$Rn), (i64 1)))),
(f32 (FADDPv2i32p (v2f32 FPR64:$Rn)))>; (f32 (FADDPv2i32p (v2f32 FPR64:$Rn)))>;

View File

@ -894,4 +894,4 @@ Optional<RegImmPair> MipsInstrInfo::isAddImmediate(const MachineInstr &MI,
} }
} }
return None; return None;
} }

View File

@ -32,4 +32,4 @@ void PPCCCState::PreAnalyzeFormalArguments(
OriginalArgWasPPCF128.push_back(false); OriginalArgWasPPCF128.push_back(false);
} }
} }
} }