Skip to content

Commit

Permalink
[ORC] Fix a typo in a variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhames committed Oct 12, 2021
1 parent 962a247 commit 9ca5064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9ca5064

Please sign in to comment.