[llvm] Fix merge typo (PR #80857)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 6 07:55:03 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mc
Author: None (stephenpeckham)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/80857.diff
1 Files Affected:
- (modified) llvm/lib/MC/MCObjectStreamer.cpp (+1-1)
``````````diff
diff --git a/llvm/lib/MC/MCObjectStreamer.cpp b/llvm/lib/MC/MCObjectStreamer.cpp
index 8948f3f164575..490e0a4dd4041 100644
--- a/llvm/lib/MC/MCObjectStreamer.cpp
+++ b/llvm/lib/MC/MCObjectStreamer.cpp
@@ -902,7 +902,7 @@ void MCObjectStreamer::emitFileDirective(StringRef Filename,
StringRef TimeStamp,
StringRef Description) {
getAssembler().addFileName(Filename);
- getAssembler().setCompilerVersion(CompilerVerion.str());
+ getAssembler().setCompilerVersion(CompilerVersion.str());
// TODO: add TimeStamp and Description to .file symbol table entry
// with the integrated assembler.
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/80857
More information about the llvm-commits
mailing list