[clang] [llvm] Enable fexec-charset option (PR #138895)
Abhina Sree via cfe-commits
cfe-commits at lists.llvm.org
Fri May 22 10:31:18 PDT 2026
================
@@ -1557,7 +1557,8 @@ void Preprocessor::HandleLineDirective() {
return;
} else {
// Parse and validate the string, converting it into a unique ID.
- StringLiteralParser Literal(StrTok, *this);
+ StringLiteralParser Literal(
+ StrTok, *this, StringLiteralEvalMethod::Evaluated, CA_NoConversion);
----------------
abhina-sree wrote:
Does this mean I should change StringLiteralEvalMethod::Evaluated to StringLiteralEvalMethod::Unevaluated or leave it unchanged?
https://github.com/llvm/llvm-project/pull/138895
More information about the cfe-commits
mailing list