[PATCH] D26667: Teach clang that 'sv' is a fine literal suffix
Malcolm Parsons via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 15 07:14:42 PST 2016
malcolm.parsons added inline comments.
================
Comment at: lib/Lex/LiteralSupport.cpp:768
.Cases("il", "i", "if", true)
+ .Case("sv", true)
.Default(false);
----------------
This is in `NumericLiteralParser::isValidUDSuffix()`.
If a change is needed for `"sv"`, wouldn't it be in `StringLiteralParser`?
https://reviews.llvm.org/D26667
More information about the cfe-commits
mailing list