diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-14 06:37:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-14 06:37:11 +0000 |
commit | f1796b622369fdc7f512732cae541ff5bc44f999 (patch) | |
tree | 399cde0c453cac55ffe0058aae130a6d0c50b6b4 | |
parent | c702d16f53fdb02fc5c21d215b428cfb02063a9d (diff) |
add some upgrading notes from Pekka.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57480 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ReleaseNotes.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 9aea45e63b..6479a270f5 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -480,6 +480,12 @@ converted to strings using <tt>llvm::GetConstantStringInfo</tt> defined via <li>Various header files like "llvm/ADT/iterator" were given a .h suffix. Change your code to #include "llvm/ADT/iterator.h" instead.</li> +<li>In the code generator, many MachineOperand predicates were renamed to be + shorter (e.g. <tt>isFrameIndex()</tt> -> <tt>isFI()</tt>), + <tt>SDOperand</tt> was renamed to <tt>SDValue</tt> (and the "<tt>Val</tt>" + member was changed to be the <tt>getNode()</tt> accessor), and the + <tt>MVT::ValueType</tt> enum has been replaced with an "<tt>MVT</tt>" + struct.</li> </ul> </div> |