After D98509,
clang --target=x86_64-linux-gnu -O2 -Rpass-analysis=loop-analysis may emit the remark,
a.cc:6:3: remark: Disabling scalable vectorization, because target does not support scalable vectors. [-Rpass-analysis] for (int i = 0; i < 128; i++) ^ a.cc:6:3: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
which is inappropriate for targets which don't support scalable vectorization.
Arguably it is also inappropriate on AArch64 when SVE is disabled.
LLVM_DEBUG should be sufficient.
I simplify the remark and use the preferred style
https://llvm.org/docs/CodingStandards.html#error-and-warning-messages