Commit 85166c91 by Dino Radakovic Committed by Copybara-Service

`layout_benchmark`: Replace leftover comment with intended call to MyAlign

PiperOrigin-RevId: 617573381
Change-Id: I0ddab2ab7cf68651424b3cf385b484d27106dd59
parent 42133464
......@@ -77,8 +77,7 @@ size_t PartialOffset(size_t k);
template <>
size_t PartialOffset<int8_t, int16_t, int32_t, Int128>(size_t k) {
constexpr size_t o = MyAlign(MyAlign(3 * 1, 2) + 5 * 2, 4);
// return Align(o + k * 4, 8);
return (o + k * 4 + 7) & ~7U;
return MyAlign(o + k * 4, 8);
}
template <>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment