diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-02-13 12:46:32 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-02-13 12:46:32 +0000 |
commit | fb6f08d5bb8d0aa146888f398e11a389496157b7 (patch) | |
tree | e2d389b86cdc4c8288e467d83f81dbe1cb6464be /llvm/docs | |
parent | 753875d32459c4a808bbbce5bfd834a7721f289f (diff) | |
download | bcm5719-llvm-fb6f08d5bb8d0aa146888f398e11a389496157b7.tar.gz bcm5719-llvm-fb6f08d5bb8d0aa146888f398e11a389496157b7.zip |
Mention AArch64 in release notes for 3.3
llvm-svn: 175055
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/ReleaseNotes.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst index 274537ce263..67de9458ebb 100644 --- a/llvm/docs/ReleaseNotes.rst +++ b/llvm/docs/ReleaseNotes.rst @@ -71,6 +71,20 @@ Non-comprehensive list of changes in this release Makes programs 10x faster by doing Special New Thing. +AArch64 target +-------------- + +We've added support for AArch64, ARM's 64-bit architecture. Development is still +in fairly early stages, but we expect successful compilation when: + +- compiling standard compliant C99 and C++03 with Clang; +- using Linux as a target platform; +- where code + static data doesn't exceed 4GB in size (heap allocated data has + no limitation). + +Some additional functionality is also implemented, notably DWARF debugging, +GNU-style thread local storage and inline assembly. + Loop Vectorizer --------------- |