diff options
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r-- | lib/CodeGen/CGObjC.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp index 79b50114b7..3b7e3a13c9 100644 --- a/lib/CodeGen/CGObjC.cpp +++ b/lib/CodeGen/CGObjC.cpp @@ -16,6 +16,7 @@ #include "CodeGenModule.h" #include "clang/AST/ASTContext.h" #include "clang/AST/DeclObjC.h" +#include "llvm/ADT/STLExtras.h" using namespace clang; using namespace CodeGen; @@ -260,4 +261,9 @@ void CodeGenFunction::EmitObjCPropertySet(const ObjCPropertyRefExpr *E, false, Args); } +void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S) +{ + ErrorUnsupported(&S, "for ... in statement"); +} + CGObjCRuntime::~CGObjCRuntime() {} |