[cfe-commits] r96650 - /cfe/trunk/lib/AST/ASTImporter.cpp
Douglas Gregor
dgregor at apple.com
Thu Feb 18 17:36:37 PST 2010
Author: dgregor
Date: Thu Feb 18 19:36:36 2010
New Revision: 96650
URL: http://llvm.org/viewvc/llvm-project?rev=96650&view=rev
Log:
Add a missing break. Cocoa.h can now be merged twice into the same AST context
Modified:
cfe/trunk/lib/AST/ASTImporter.cpp
Modified: cfe/trunk/lib/AST/ASTImporter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTImporter.cpp?rev=96650&r1=96649&r2=96650&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTImporter.cpp (original)
+++ cfe/trunk/lib/AST/ASTImporter.cpp Thu Feb 18 19:36:36 2010
@@ -437,6 +437,7 @@
return false;
if (Vec1->isPixel() != Vec2->isPixel())
return false;
+ break;
}
case Type::FunctionProto: {
More information about the cfe-commits
mailing list