From 17dff47e2246547a168eeb214f664aa7b17621fe Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Sun, 25 Apr 2010 19:13:33 +0000 Subject: [PATCH] Added bullet about GNUstep Objective-C ABI support to the Clang section of the release notes. llvm-svn: 102309 --- llvm/docs/ReleaseNotes.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index b109cfbb02c2..9bf38c26c0e8 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/docs/ReleaseNotes.html @@ -123,6 +123,8 @@ development. Here we include updates on these subprojects.
  • C++ Support: Clang is now capable of self-hosting! While still alpha-quality, Clang's C++ support has matured enough to build LLVM and Clang, and C++ is now enabled by default. See the Clang C++ compatibility page for common C++ migration issues.
  • +
  • Objective-C: Clang now includes experimental support for an updated Objective-C ABI on non-Darwin platforms. This includes support for non-fragile instance variables and accelerated proxies, as well as greater potential for future optimisations. The new ABI is used when compiling with the -fobjc-nonfragile-abi and -fgnu-runtime options. Code compiled with these options may be mixed with code compiled with GCC or clang using the old GNU ABI, but requires the libobjc2 runtime from the GNUstep project.
  • +
  • New warnings: Clang contains a number of new warnings, including control-flow warnings (unreachable code, missing return statements in a non-void function, etc.), sign-comparison warnings, and improved format-string warnings.
  • CIndex API and Python bindings: Clang now includes a C API as part of the @@ -136,6 +138,7 @@ set of Python bindings.
  • ARM Support: Clang now has ABI support for both the Darwin and Linux ARM ABIs. Coupled with many improvements to the LLVM ARM backend, Clang is now suitable for use as a a beta quality ARM compiler.
  • +