[PATCH] D64525: [clang-scan-deps] Dependency directives source minimizer: single quotes are not digit separators after a valid character literal prefix
Michael Spencer via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 10 12:37:36 PDT 2019
Bigcheese added inline comments.
================
Comment at: clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp:270
+ return false;
+ if (Prev == '8' && (Cur - 1 != Start) && *(Cur - 2) == 'u')
+ return false;
----------------
Are we sure at this point that it's always safe to jump back 2?
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64525/new/
https://reviews.llvm.org/D64525
More information about the cfe-commits
mailing list