mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Update basic diagnostic capitalization/punctuation (#4328)
This is a primarily automated change:
- Search & replace for capitalization
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s")([A-Z])`
- `$1\L$2`
- Search & replace for period
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s"(?:[^)]|\n)+)\.("[,)])`
- `$1$2`
- Limited search & replace for `ERROR: ` -> `error: ` in streamed things
- Leaving a TODO for command_line because there's more cleanup that can
be done there
- Modify diagnostic_consumer.cpp
- ERROR -> error
- WARNING -> warning
---------
Co-authored-by: Richard Smith <richard@metafoo.co.uk>
This commit is contained in:
co-authored by
Richard Smith
parent
7f6d684b29
commit
e7aebbe581
@@ -20,7 +20,7 @@ auto CodeGen::Make(llvm::Module& module, llvm::StringRef target_triple,
|
||||
llvm::TargetRegistry::lookupTarget(target_triple, error);
|
||||
|
||||
if (!target) {
|
||||
errors << "ERROR: Invalid target: " << error << "\n";
|
||||
errors << "error: invalid target: " << error << "\n";
|
||||
return {};
|
||||
}
|
||||
module.setTargetTriple(target_triple);
|
||||
@@ -53,7 +53,7 @@ auto CodeGen::EmitCode(llvm::raw_pwrite_stream& out,
|
||||
llvm::legacy::PassManager pass;
|
||||
// Note that this returns true on an error.
|
||||
if (target_machine_->addPassesToEmitFile(pass, out, nullptr, file_type)) {
|
||||
errors_ << "ERROR: Unable to emit to this file.\n";
|
||||
errors_ << "error: unable to emit to this file\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user