Skip to content

Commit 8977dbb

Browse files
committed
improved comments
1 parent 36bd45d commit 8977dbb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

clang/lib/CodeGen/BackendUtil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ static std::string flattenClangCommandLine(ArrayRef<std::string> Args,
344344
if (Arg.starts_with("-object-file-name") || Arg == MainFilename) {
345345
continue;
346346
}
347-
// Skip fmessage-length for reproduciability.
347+
// Skip fmessage-length for reproducibility.
348348
if (Arg.starts_with("-fmessage-length")) {
349349
continue;
350350
}

llvm/include/llvm/MC/MCTargetOptions.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,8 @@ class MCTargetOptions {
9595
std::string SplitDwarfFile;
9696
std::string AsSecureLogFile;
9797

98-
// This will be set as compiler path in LF_BUILDINFO
98+
// Used for codeview debug info. These will be set as compiler path and commandline arguments in LF_BUILDINFO
9999
std::string Argv0;
100-
101-
// This will be set as commandline arguments in LF_BUILDINFO
102100
std::string CommandlineArgs;
103101

104102
/// Additional paths to search for `.include` directives when using the

0 commit comments

Comments
 (0)