diff options
author | John McCall <rjmccall@apple.com> | 2012-07-12 02:07:58 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2012-07-12 02:07:58 +0000 |
commit | f7226fbe677a9c7578fa0613491ed15c6dc6a5e1 (patch) | |
tree | 341afe4f4a4d8d3068a7e0164dc9f2e825d21e8e /lib/CodeGen/CodeGenModule.cpp | |
parent | dc5796cb3e77feb58928f84632d3f0088351d847 (diff) |
Add the ObjFW runtime. Patch by Jonathan Schleifer!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160102 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index bba3e7c5f7..22ac115484 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -140,6 +140,7 @@ void CodeGenModule::createObjCRuntime() { switch (LangOpts.ObjCRuntime.getKind()) { case ObjCRuntime::GNUstep: case ObjCRuntime::GCC: + case ObjCRuntime::ObjFW: ObjCRuntime = CreateGNUObjCRuntime(*this); return; |