Skip to content

Commit d06d039

Browse files
committed
Remove incomplete bit about properties
1 parent 8a6f44d commit d06d039

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/Driver/Compilation.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,10 +1366,6 @@ namespace driver {
13661366
// be compiled in 2 batches. Integer division yields 26/25 = 1 batch, but
13671367
// a single batch of 26 exceeds the limit. The calculation must round up,
13681368
// which can be calculated using: `(x + y - 1) / y`
1369-
//
1370-
// Two key properties of this calculation are:
1371-
// DivideUp(M*N, N) = M
1372-
// DivideUp(M*N + 1, N) = M + 1
13731369
auto DivideUp = [](size_t Num, size_t Div) -> size_t {
13741370
return (Num + Div - 1) / Div;
13751371
};

0 commit comments

Comments
 (0)