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 | 775086e67c465ff9363a927cb7d4a559d49e47f1 (patch) | |
tree | 643dae2ad48520fc34a3cfb7eb65fc542cf4adab /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 493eb32ff45cebb7ea227a33955a565933879ed0 (diff) | |
download | bcm5719-llvm-775086e67c465ff9363a927cb7d4a559d49e47f1.tar.gz bcm5719-llvm-775086e67c465ff9363a927cb7d4a559d49e47f1.zip |
Add the ObjFW runtime. Patch by Jonathan Schleifer!
llvm-svn: 160102
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index bba3e7c5f75..22ac1154840 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/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; |