Skip to content
Snippets Groups Projects
Commit fd39a7dd authored by Benjamin Kramer's avatar Benjamin Kramer
Browse files

Enable non-fragile ABI for the ObjFW runtime

The following patch enables the non-fragile ABI for the ObjFW runtime.

However, I noticed that it is not possible anymore to disable it with
-fno-objc-nonfragile-abi like it was before. I think this functionality should
be restored, but I guess this is not in scope for 3.4 anymore.

Patch by Jonathan Schleifer!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@195547 91177308-0d34-0410-b5e6-96231b3b80d8
parent 6c9cefd8
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,7 @@ public: ...@@ -79,7 +79,7 @@ public:
case GCC: return false; case GCC: return false;
case MacOSX: return true; case MacOSX: return true;
case GNUstep: return true; case GNUstep: return true;
case ObjFW: return false; case ObjFW: return true;
case iOS: return true; case iOS: return true;
} }
llvm_unreachable("bad kind"); llvm_unreachable("bad kind");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment