File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -437,13 +437,12 @@ class JITLinkSlabAllocator final : public JITLinkMemoryManager {
437
437
uint64_t SlabRemainingSize = SlabRemaining.allocatedSize ();
438
438
439
439
if (SegmentSize > SlabRemainingSize)
440
- return make_error<StringError>(" Slab allocator out of memory: "
441
- " request for " +
442
- formatv (" {0:x}" , SegmentSize) +
443
- " bytes exceeds remaining capacity of " +
444
- formatv (" {0:x}" , SlabRemainingSize) +
445
- " bytes" ,
446
- inconvertibleErrorCode ());
440
+ return make_error<StringError>(
441
+ " Slab allocator out of memory: request for " +
442
+ formatv (" {0:x}" , SegmentSize) +
443
+ " bytes exceeds remaining capacity of " +
444
+ formatv (" {0:x}" , SlabRemainingSize) + " bytes" ,
445
+ inconvertibleErrorCode ());
447
446
448
447
sys::MemoryBlock SegMem (SlabBase, SegmentSize);
449
448
SlabRemaining =
You can’t perform that action at this time.
0 commit comments