diff --git a/lldb/source/Expression/ClangASTSource.cpp b/lldb/source/Expression/ClangASTSource.cpp index 738b342d5e88..d8256ddaac5f 100644 --- a/lldb/source/Expression/ClangASTSource.cpp +++ b/lldb/source/Expression/ClangASTSource.cpp @@ -987,9 +987,6 @@ ClangASTSource::layoutRecordType(const RecordDecl *record, lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS)); - if (!record->getNameAsString().compare("PseudoObjectExprBitfields")) - fprintf(stderr, "THIS IS THE ONE!"); - if (log) { log->Printf("LayoutRecordType[%u] on (RecordDecl*)%p [name = '%s']", diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp index 428193aa7d21..9262f0b6d0d0 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp @@ -1291,8 +1291,6 @@ SymbolFileDWARF::ParseTemplateParameterInfos (DWARFCompileUnit* dwarf_cu, if (parent_die == NULL) return NULL; - const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (dwarf_cu->GetAddressByteSize()); - Args template_parameter_names; for (const DWARFDebugInfoEntry *die = parent_die->GetFirstChild(); die != NULL; @@ -5156,9 +5154,6 @@ SymbolFileDWARF::ParseType (const SymbolContext& sc, DWARFCompileUnit* dwarf_cu, if (type_name_cstr) { - if (die->GetOffset() == 0xaeaba) - fprintf(stderr, "This is the one!"); - bool type_handled = false; if (tag == DW_TAG_subprogram) { diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index c64af6ef6a7f..740ad23f0216 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -40,6 +40,7 @@ #include "clang/AST/RecordLayout.h" #include "clang/AST/Type.h" #include "clang/Basic/Builtins.h" +#include "clang/Basic/Diagnostic.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/FileSystemOptions.h" #include "clang/Basic/SourceManager.h"