mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-03 08:30:43 +00:00
21 lines
1.2 KiB
Diff
21 lines
1.2 KiB
Diff
Index: llvm-toolchain-snapshot_16~++20220908094745+0444b40ed339/llvm/include/llvm/Target/TargetMachine.h
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_16~++20220908094745+0444b40ed339.orig/llvm/include/llvm/Target/TargetMachine.h
|
|
+++ llvm-toolchain-snapshot_16~++20220908094745+0444b40ed339/llvm/include/llvm/Target/TargetMachine.h
|
|
@@ -447,13 +447,13 @@ public:
|
|
raw_pwrite_stream &, raw_pwrite_stream *,
|
|
CodeGenFileType, CGPassBuilderOption,
|
|
PassInstrumentationCallbacks *) {
|
|
- return make_error<StringError>("buildCodeGenPipeline is not overriden",
|
|
+ return make_error<StringError>("buildCodeGenPipeline is not overridden",
|
|
inconvertibleErrorCode());
|
|
}
|
|
|
|
virtual std::pair<StringRef, bool> getPassNameFromLegacyName(StringRef) {
|
|
llvm_unreachable(
|
|
- "getPassNameFromLegacyName parseMIRPipeline is not overriden");
|
|
+ "getPassNameFromLegacyName parseMIRPipeline is not overridden");
|
|
}
|
|
|
|
/// Add passes to the specified pass manager to get machine code emitted with
|