Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-08-26 08:12:26 +0300
committerEric Christopher <echristo@gmail.com>2015-08-26 08:12:26 +0300
commit49ecb9ef50f40c1b57a23ec492e5465b85aa856b (patch)
treeeb81615451ff840dea5c9b111751265d949c9c53
parenta64cf48dae86421de67769c40649d24249044c88 (diff)
Add a small release note about the getSubtarget migration.
llvm-svn: 246013
-rw-r--r--llvm/docs/ReleaseNotes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 3d2d245583a5..98a21649f2da 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -90,6 +90,11 @@ Non-comprehensive list of changes in this release
more you can avoid using ``PointerType::getPointeeType``, the easier the
migration will be.
+* Argument-less ``TargetMachine::getSubtarget`` and
+ ``TargetMachine::getSubtargetImpl`` have been removed from the tree. Updating
+ out of tree ports is as simple as implementing a non-virtual version in the
+ target, but implementing full ``Function`` based ``TargetSubtargetInfo``
+ support is recommended.
Changes to the MIPS Target
--------------------------