[PATCH] D99409: [clang] Speedup line offset mapping computation
Paul Robinson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 10 13:57:53 PDT 2021
probinson added inline comments.
================
Comment at: clang/lib/Basic/SourceManager.cpp:1255
-#ifdef __SSE2__
-#include <emmintrin.h>
-#endif
+// Check if mutli-byte word x has bytes between m and n, included. This may also
+// catch bytes equal to n + 1.
----------------
Typo: multi-byte. Also, I think "inclusive" rather than "included" assuming you mean the range `[m, n]` rather than `(m, n)`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D99409/new/
https://reviews.llvm.org/D99409
More information about the llvm-commits
mailing list