diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2012-07-03 20:49:52 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2012-07-03 20:49:52 +0000 |
commit | b601c96892254f06c64e2376cfd124e461586975 (patch) | |
tree | 2aedcecc8cb9d63dc2d34f8a894fc710de64c02b /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 1e148fe064bbb65ae1fcdc893db0e7af781ad20b (diff) | |
download | bcm5719-llvm-b601c96892254f06c64e2376cfd124e461586975.tar.gz bcm5719-llvm-b601c96892254f06c64e2376cfd124e461586975.zip |
Rename the GCC Objective-C runtime to gcc from gnu-fragile and the GNUstep
runtime to gnustep from gnu. Fix EH for the GCC runtime.
llvm-svn: 159684
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index ef20cf45562..bba3e7c5f75 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -138,8 +138,8 @@ void CodeGenModule::createObjCRuntime() { // This is just isGNUFamily(), but we want to force implementors of // new ABIs to decide how best to do this. switch (LangOpts.ObjCRuntime.getKind()) { - case ObjCRuntime::GNU: - case ObjCRuntime::FragileGNU: + case ObjCRuntime::GNUstep: + case ObjCRuntime::GCC: ObjCRuntime = CreateGNUObjCRuntime(*this); return; @@ -546,7 +546,7 @@ static bool hasUnwindExceptions(const LangOptions &LangOpts) { // If ObjC exceptions are enabled, this depends on the ABI. if (LangOpts.ObjCExceptions) { - if (LangOpts.ObjCRuntime.isFragile()) return false; + return LangOpts.ObjCRuntime.hasUnwindExceptions(); } return true; |