]> granicus.if.org Git - clang/commitdiff
Remove printfs.
authorAnders Carlsson <andersca@mac.com>
Fri, 16 Apr 2010 15:59:41 +0000 (15:59 +0000)
committerAnders Carlsson <andersca@mac.com>
Fri, 16 Apr 2010 15:59:41 +0000 (15:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101470 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/RecordLayoutBuilder.cpp

index 388d47193ac844b15a236ea2c835e0e1349995a5..15ad11f7fd84f9fef3b4baea7f4e03f18d00c15d 100644 (file)
@@ -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);