File tree Expand file tree Collapse file tree 3 files changed +0
-49
lines changed Expand file tree Collapse file tree 3 files changed +0
-49
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,6 @@ class Recycler {
85
85
" Recycler allocation alignment is less than object align!" );
86
86
static_assert (sizeof (SubClass) <= Size,
87
87
" Recycler allocation size is less than object size!" );
88
- static_assert (Size >= sizeof (FreeNode) &&
89
- " Recycler size must be at least sizeof(FreeNode)" );
90
88
return FreeList ? reinterpret_cast <SubClass *>(pop_val ())
91
89
: static_cast <SubClass *>(Allocator.Allocate (Size, Align));
92
90
}
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ add_llvm_unittest(SupportTests
69
69
PerThreadBumpPtrAllocatorTest.cpp
70
70
ProcessTest.cpp
71
71
ProgramTest.cpp
72
- RecyclerTest.cpp
73
72
RegexTest.cpp
74
73
ReverseIterationTest.cpp
75
74
ReplaceFileTest.cpp
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments