forked from OSchip/llvm-project
[ORC] Fix a typo in a variable name.
This commit is contained in:
parent
962a2479b5
commit
9ca5064153
llvm/lib/ExecutionEngine/JITLink
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue