[ORC] Fix a typo in a variable name.

This commit is contained in:
Lang Hames 2021-10-11 21:50:46 -07:00
parent 962a2479b5
commit 9ca5064153
1 changed files with 1 additions and 1 deletions
llvm/lib/ExecutionEngine/JITLink

View File

@ -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;
}