summaryrefslogtreecommitdiff
path: root/docs/ReleaseNotes.rst
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-04-03 19:27:57 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-04-03 19:27:57 +0000
commitd2615cc53b916e8aae45783ca7113b93de515ce3 (patch)
tree82bec358073d78c43c64e83da870f611be834411 /docs/ReleaseNotes.rst
parent4f8a3eb2ce5d4ba422483439e20c8cbb4d953a41 (diff)
downloadclang-d2615cc53b916e8aae45783ca7113b93de515ce3.tar.gz
clang-d2615cc53b916e8aae45783ca7113b93de515ce3.tar.bz2
clang-d2615cc53b916e8aae45783ca7113b93de515ce3.tar.xz
Add 178663 back.
http://lab.llvm.org:8011/builders/clang-x86_64-darwin10-gdb went back green before it processed the reverted 178663, so it could not have been the culprit. Revert "Revert 178663." This reverts commit 4f8a3eb2ce5d4ba422483439e20c8cbb4d953a41. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178682 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ReleaseNotes.rst')
-rw-r--r--docs/ReleaseNotes.rst11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 504553c17a..d9a3364606 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -111,9 +111,14 @@ succeeded). Essentially all previous 'cast' usage should be replaced with
'castAs' and 'dyn_cast' should be replaced with 'getAs'. See r175462 for the
first example of such a change along with many examples of how code was
migrated to the new API.
-
-API change 1
-^^^^^^^^^^^^
+
+Storage Class
+^^^^^^^^^^^^^
+
+For each variable and function Clang used to keep the storage class as written
+in the source, the linkage and a semantic storage class. This was a bit
+redundant and the semantic storage class has been removed. The method
+getStorageClass now returns what is written it the source code for that decl.
...