[llvm] [BOLT] Fix typo (NFC) (PR #71579)

Vladislav Khmelevsky via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 7 11:36:40 PST 2023


https://github.com/yota9 created https://github.com/llvm/llvm-project/pull/71579

instrumentation->hugify


>From 5e2c5f92e17ba91e39a8eb8161bef70da6293d6f Mon Sep 17 00:00:00 2001
From: Vladislav Khmelevsky <och95 at yandex.ru>
Date: Tue, 7 Nov 2023 23:34:11 +0400
Subject: [PATCH] [BOLT] Fix typo (NFC)

instrumentation->hugify
---
 bolt/lib/RuntimeLibs/HugifyRuntimeLibrary.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bolt/lib/RuntimeLibs/HugifyRuntimeLibrary.cpp b/bolt/lib/RuntimeLibs/HugifyRuntimeLibrary.cpp
index a727ca911354cfa..b6fc49d3f5d671b 100644
--- a/bolt/lib/RuntimeLibs/HugifyRuntimeLibrary.cpp
+++ b/bolt/lib/RuntimeLibs/HugifyRuntimeLibrary.cpp
@@ -71,8 +71,7 @@ void HugifyRuntimeLibrary::link(BinaryContext &BC, StringRef ToolPath,
          "We don't currently support linking multiple runtime libraries");
   RuntimeStartAddress = Linker.lookupSymbol("__bolt_hugify_self").value_or(0);
   if (!RuntimeStartAddress) {
-    errs() << "BOLT-ERROR: instrumentation library does not define "
-              "__bolt_hugify_self: "
+    errs() << "BOLT-ERROR: hugify library does not define __bolt_hugify_self: "
            << LibPath << "\n";
     exit(1);
   }



More information about the llvm-commits mailing list