From 3d4a7c9bf856774fb43d724a3353c5a24297f866 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sat, 30 May 2009 06:35:22 +0000 Subject: [PATCH] Add a hack to prevent us from printing out the __builtin_va_list declaration in -ast-print mode. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72615 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/DeclPrinter.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/AST/DeclPrinter.cpp b/lib/AST/DeclPrinter.cpp index bfd3dca3e6..01cbee4d63 100644 --- a/lib/AST/DeclPrinter.cpp +++ b/lib/AST/DeclPrinter.cpp @@ -178,6 +178,11 @@ void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) { if (!Policy.Dump) { // Skip over implicit declarations in pretty-printing mode. if (D->isImplicit()) continue; + // FIXME: Ugly hack so we don't pretty-print the builtin declaration + // of __builtin_va_list. There should be some other way to check that. + if (isa(*D) && cast(*D)->getNameAsString() == + "__builtin_va_list") + continue; } // The next bits of code handles stuff like "struct {int x;} a,b"; we're -- 2.40.0