[llvm] 9ca5064 - [ORC] Fix a typo in a variable name.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 11 21:51:34 PDT 2021


Author: Lang Hames
Date: 2021-10-11T21:50:46-07:00
New Revision: 9ca50641531789b1d8a3a20b227799db20ebc5d7

URL: https://github.com/llvm/llvm-project/commit/9ca50641531789b1d8a3a20b227799db20ebc5d7
DIFF: https://github.com/llvm/llvm-project/commit/9ca50641531789b1d8a3a20b227799db20ebc5d7.diff

LOG: [ORC] Fix a typo in a variable name.

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp b/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
index ff3d71fc383a..fd971eeae41e 100644
--- a/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
+++ b/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
@@ -356,7 +356,7 @@ void InProcessMemoryManager::allocate(const JITLinkDylib *JD, LinkGraph &G,
   /// than a size_t.
   if (SegsSizes->total() > std::numeric_limits<size_t>::max()) {
     OnAllocated(make_error<JITLinkError>(
-        "Total requested size " + formatv("{0:x}", SegSizes->total()) +
+        "Total requested size " + formatv("{0:x}", SegsSizes->total()) +
         " for graph " + G.getName() + " exceeds address space"));
     return;
   }


        


More information about the llvm-commits mailing list