summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2010-04-16 15:59:41 +0000
committerAnders Carlsson <andersca@mac.com>2010-04-16 15:59:41 +0000
commitd9abbe56a5a9b5096058d89db2d7879ce88bffd4 (patch)
treed78cdc9d803163d25c3b57830653fdb4bdee5e47
parent99e5327bfde76193ead176dc7c46e6257d52594d (diff)
downloadbcm5719-llvm-d9abbe56a5a9b5096058d89db2d7879ce88bffd4.tar.gz
bcm5719-llvm-d9abbe56a5a9b5096058d89db2d7879ce88bffd4.zip
Remove printfs.
llvm-svn: 101470
-rw-r--r--clang/lib/AST/RecordLayoutBuilder.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/AST/RecordLayoutBuilder.cpp b/clang/lib/AST/RecordLayoutBuilder.cpp
index 388d47193ac..15ad11f7fd8 100644
--- a/clang/lib/AST/RecordLayoutBuilder.cpp
+++ b/clang/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);
OpenPOWER on IntegriCloud