[llvm] Fix merge typo (PR #80857)

via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 6 07:54:31 PST 2024


https://github.com/stephenpeckham created https://github.com/llvm/llvm-project/pull/80857

None

>From 3727f69e7279533972ea729dfde6866300c2f957 Mon Sep 17 00:00:00 2001
From: Stephen Peckham <speckham at us.ibm.com>
Date: Tue, 6 Feb 2024 10:53:43 -0500
Subject: [PATCH] Fix merge typo

---
 llvm/lib/MC/MCObjectStreamer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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.
 }



More information about the llvm-commits mailing list