From: Daniel Sanders Date: Mon, 27 Nov 2017 21:12:55 +0000 (+0000) Subject: Add release note about TargetRegistry change from r318352 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d9a2314a0f381d5d984eb3d4302b464363cdc17;p=llvm Add release note about TargetRegistry change from r318352 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319093 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index 6e747873eca..4b6d7931e84 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -44,6 +44,11 @@ Non-comprehensive list of changes in this release ``llvm::sys::ExecuteNoWait`` was changed to an ``ArrayRef`` of optional ``StringRef``'s to make it safer and more convenient to use. +* The backend name was added to the Target Registry to allow run-time + information to be fed back into TableGen. Out-of-tree targets will need to add + the name used in the `def X : Target` definition to the call to + `RegisterTarget`. + * Note.. .. NOTE