diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-11-16 00:36:46 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-11-16 00:36:46 +0000 |
commit | 07df65cbb1d9183aa29cb17be2edaf67fbfec42a (patch) | |
tree | affd02e3c769a13be98ef594a5fa5309f2b10e4a /docs | |
parent | 74c996cbd12aa39e75990e3e694549bb1be90e4d (diff) | |
download | external_llvm-07df65cbb1d9183aa29cb17be2edaf67fbfec42a.zip external_llvm-07df65cbb1d9183aa29cb17be2edaf67fbfec42a.tar.gz external_llvm-07df65cbb1d9183aa29cb17be2edaf67fbfec42a.tar.bz2 |
Mention address space related changes in release notes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194904 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index f67ebf0..a64bc10 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -83,6 +83,13 @@ Non-comprehensive list of changes in this release * FileCheck now allows specifing -check-prefix multiple times. This helps reduce duplicate check lines when using multiple RUN lines. +* The bitcast instruction no longer allows casting between pointers + with different address spaces. To achieve this, use the new + addrspacecast instruction. + +* Different sized pointers for different address spaces should now + generally work. This is primarily useful for GPU targets. + * ... next change ... .. NOTE |