[clang] [clang-tools-extra] WIP: Extend SourceLocation to 64 bits. (PR #146314)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 30 06:46:39 PDT 2025
================
@@ -682,6 +682,11 @@ class DeclarationNameTable {
DeclarationName getCXXLiteralOperatorName(const IdentifierInfo *II);
};
+struct CXXOperatorSourceInfo {
+ SourceLocation::UIntTy BeginOpNameLoc;
+ SourceLocation::UIntTy EndOpNameLoc;
----------------
erichkeane wrote:
Curious why this is ::UIntTy instead of just the source location? I realize it was before, but now that we're indirecting the object, I wonder if the original reason still exists.
https://github.com/llvm/llvm-project/pull/146314
More information about the cfe-commits
mailing list