diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-02-10 22:46:12 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-02-10 22:46:12 +0000 |
commit | 3afdfd70616b5ba569dc4e78f41063d35b127464 (patch) | |
tree | 83c942f4986a4274a70f6ed59a61d1efe3c52ffd /lib/CodeGen/CGObjCMac.cpp | |
parent | 726080d8dc40d993521a42687342522da06d3aac (diff) |
This patch is all it takes to pass all objc2's fast-enumeration
tests in the dejagnu test suite in the nonfragile abi mode.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCMac.cpp')
-rw-r--r-- | lib/CodeGen/CGObjCMac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index 0e26379f62..e55a6a31fe 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -720,7 +720,7 @@ public: return ObjCTypes.SetPropertyFn; } virtual llvm::Function *EnumerationMutationFunction() - { return 0; } + { return ObjCTypes.EnumerationMutationFn; } virtual void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S) |