I left some stray debugging messages in the source

code.  Removing these.

llvm-svn: 149903
This commit is contained in:
Sean Callanan 2012-02-06 21:28:03 +00:00
parent d5d95b0b51
commit 7e2863b416
3 changed files with 1 additions and 8 deletions

View File

@ -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']",

View File

@ -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)
{

View File

@ -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"