Skip to content

Commit 9ca5064

Browse files
committed
[ORC] Fix a typo in a variable name.
1 parent 962a247 commit 9ca5064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ void InProcessMemoryManager::allocate(const JITLinkDylib *JD, LinkGraph &G,
356356
/// than a size_t.
357357
if (SegsSizes->total() > std::numeric_limits<size_t>::max()) {
358358
OnAllocated(make_error<JITLinkError>(
359-
"Total requested size " + formatv("{0:x}", SegSizes->total()) +
359+
"Total requested size " + formatv("{0:x}", SegsSizes->total()) +
360360
" for graph " + G.getName() + " exceeds address space"));
361361
return;
362362
}

0 commit comments

Comments
 (0)