From 4b16e97ff7761cfc61a42b15dfce5d868335196f Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Fri, 16 Apr 2010 15:59:41 +0000 Subject: [PATCH] Remove printfs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101470 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/RecordLayoutBuilder.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/AST/RecordLayoutBuilder.cpp b/lib/AST/RecordLayoutBuilder.cpp index 388d47193a..15ad11f7fd 100644 --- a/lib/AST/RecordLayoutBuilder.cpp +++ b/lib/AST/RecordLayoutBuilder.cpp @@ -623,15 +623,10 @@ void ASTRecordLayoutBuilder::LayoutWideBitField(uint64_t FieldSize, Context.UnsignedLongTy, Context.UnsignedLongLongTy }; - printf("field sizes %llu type size %llu\n", - FieldSize, TypeSize); - QualType Type; for (unsigned I = 0, E = llvm::array_lengthof(IntegralPODTypes); I != E; ++I) { uint64_t Size = Context.getTypeSize(IntegralPODTypes[I]); - printf("going to try %s %llu\n", IntegralPODTypes[I].getAsString().c_str(), - Size); if (Size > FieldSize) break; @@ -639,7 +634,6 @@ void ASTRecordLayoutBuilder::LayoutWideBitField(uint64_t FieldSize, Type = IntegralPODTypes[I]; } assert(!Type.isNull() && "Did not find a type!"); - printf("type should be %s\n", Type.getAsString().c_str()); unsigned TypeAlign = Context.getTypeAlign(Type); -- 2.50.1