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 | 6f21daaec162b82f41c29c4552a971fd89df1902 (patch) | |
tree | ba88958b1454355edb1df2a4def72364975032ed /llvm/docs | |
parent | 3211159cabd2c070d2ec03f8e4896a5d87091b15 (diff) | |
download | bcm5719-llvm-6f21daaec162b82f41c29c4552a971fd89df1902.tar.gz bcm5719-llvm-6f21daaec162b82f41c29c4552a971fd89df1902.zip |
add some upgrading notes from Pekka.
llvm-svn: 57480
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/ReleaseNotes.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 9aea45e63b2..6479a270f53 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/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> |