[cfe-commits] r77386 - /cfe/trunk/lib/AST/ASTContext.cpp

Chris Lattner sabre at nondot.org
Tue Jul 28 15:49:34 PDT 2009


Author: lattner
Date: Tue Jul 28 17:49:34 2009
New Revision: 77386

URL: http://llvm.org/viewvc/llvm-project?rev=77386&view=rev
Log:
remove extraneous braces

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=77386&r1=77385&r2=77386&view=diff

==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Tue Jul 28 17:49:34 2009
@@ -3894,7 +3894,6 @@
     break;
   case 'V': {
     char *End;
-    
     unsigned NumElements = strtoul(Str, &End, 10);
     assert(End != Str && "Missing vector size");
     
@@ -3904,7 +3903,7 @@
     Type = Context.getVectorType(ElementType, NumElements);
     break;
   }
-  case 'P': {
+  case 'P':
     Type = Context.getFILEType();
     if (Type.isNull()) {
       Error = ASTContext::GE_Missing_FILE;
@@ -3912,8 +3911,7 @@
     } else {
       break;
     }
-  }
-  case 'J': {
+  case 'J':
     if (Signed) {
       Type = Context.getsigjmp_bufType();
       if (Type.isNull()) {
@@ -3932,7 +3930,6 @@
       }
     }
   }
-  }
   
   if (!AllowTypeModifiers)
     return Type;





More information about the cfe-commits mailing list