clang-format doesn't seem to handle `[unroll]`, but this should probably be one of: ```c++ [unroll] for (int i = 1; i < N; ++i) XSquaredSum += XSquared[i]; ``` or ```c++ [unroll] for (int i = 1; i < N; ++i) XSquaredSum += XSquared[i]; ``` The latter is closer to what clang-format does with `[[unroll]]` instead of `[unroll]` to trick it into seeing that as an attribute. _Originally posted by @bogner in https://github.com/llvm/llvm-project/pull/121611#discussion_r1902242837_