[clang] [clang] Fix pretty-printing assume_aligned attributes (PR #67331)
Balazs Benics via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 26 06:55:46 PDT 2023
================
@@ -320,11 +320,12 @@ namespace {
}
std::string getIsOmitted() const override {
- if (type == "IdentifierInfo *")
+ StringRef T = type;
+ if (T == "IdentifierInfo *" || T == "Expr *")
return "!get" + getUpperName().str() + "()";
- if (type == "TypeSourceInfo *")
+ if (T == "TypeSourceInfo *")
return "!get" + getUpperName().str() + "Loc()";
- if (type == "ParamIdx")
+ if (T == "ParamIdx")
return "!get" + getUpperName().str() + "().isValid()";
return "false";
----------------
steakhal wrote:
Done.
https://github.com/llvm/llvm-project/pull/67331
More information about the cfe-commits
mailing list