]> granicus.if.org Git - clang/commitdiff
Add a missing break. Cocoa.h can now be merged twice into the same AST context
authorDouglas Gregor <dgregor@apple.com>
Fri, 19 Feb 2010 01:36:36 +0000 (01:36 +0000)
committerDouglas Gregor <dgregor@apple.com>
Fri, 19 Feb 2010 01:36:36 +0000 (01:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96650 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/ASTImporter.cpp

index 858c8aa650bec35dcd33c862172a53ca2ab43d5b..911f1b8d370766e4bcd6f744d61bdbeb1350b62e 100644 (file)
@@ -437,6 +437,7 @@ static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
       return false;
     if (Vec1->isPixel() != Vec2->isPixel())
       return false;
+    break;
   }
 
   case Type::FunctionProto: {