[clang] [HLSL] make semantic matching case insensitive (PR #129773)
Sarah Spall via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 6 13:45:28 PST 2025
================
@@ -141,6 +141,8 @@ void Parser::ParseHLSLAnnotations(ParsedAttributes &Attrs,
return;
}
+ II = PP.getIdentifierInfo(II->getName().lower());
----------------
spall wrote:
Okay that might requirement a significant change. I'll look into it
https://github.com/llvm/llvm-project/pull/129773
More information about the cfe-commits
mailing list