1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Mention the new TableGen pattern format in the release notes.

Make threats about removing the old syntax.

llvm-svn: 177848
This commit is contained in:
Jakob Stoklund Olesen 2013-03-25 00:36:53 +00:00
parent 2d5d17d8c6
commit 248a113326

View File

@ -64,6 +64,12 @@ Non-comprehensive list of changes in this release
attributes, which are useful for passing information to code generation. See
:doc:`HowToUseAttributes` for more details.
* TableGen's syntax for instruction selection patterns has been simplified.
Instead of specifying types indirectly with register classes, you should now
specify types directly in the input patterns. See ``SparcInstrInfo.td`` for
examples of the new syntax. The old syntax using register classes still
works, but it will be removed in a future LLVM release.
* ... next change ...
.. NOTE