[Lldb-commits] [clang] [lldb] [clang][AST] fix ast-print of extern <lang> with >=2 declarators, fixed (PR #93913)
Aaron Ballman via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 18 04:59:03 PDT 2024
================
@@ -2380,7 +2380,7 @@ FunctionDecl *Sema::CreateBuiltin(IdentifierInfo *II, QualType Type,
}
FunctionDecl *New = FunctionDecl::Create(Context, Parent, Loc, Loc, II, Type,
- /*TInfo=*/nullptr, SC_Extern,
+ /*TInfo=*/nullptr, SC_None,
----------------
AaronBallman wrote:
I think I've come around to being okay with these changes, thank you!
https://github.com/llvm/llvm-project/pull/93913
More information about the lldb-commits
mailing list