Author: mrs
Date: Fri Feb 27 12:32:39 2009
New Revision: 65644

URL: http://llvm.org/viewvc/llvm-project?rev=65644&view=rev
Log:
Silence warnings.

Modified:
    cfe/trunk/lib/AST/ASTContext.cpp

Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=65644&r1=65643&r2=65644&view=diff

==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Fri Feb 27 12:32:39 2009
@@ -290,8 +290,8 @@
 std::pair<uint64_t, unsigned>
 ASTContext::getTypeInfo(const Type *T) {
   T = getCanonicalType(T);
-  uint64_t Width;
-  unsigned Align;
+  uint64_t Width=0;
+  unsigned Align=8;
   switch (T->getTypeClass()) {
 #define TYPE(Class, Base)
 #define ABSTRACT_TYPE(Class, Base)


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to