[llvm-commits] [llvm] r57480 - /llvm/trunk/docs/ReleaseNotes.html
Chris Lattner
sabre at nondot.org
Mon Oct 13 23:37:11 PDT 2008
Author: lattner
Date: Tue Oct 14 01:37:11 2008
New Revision: 57480
URL: http://llvm.org/viewvc/llvm-project?rev=57480&view=rev
Log:
add some upgrading notes from Pekka.
Modified:
llvm/trunk/docs/ReleaseNotes.html
Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=57480&r1=57479&r2=57480&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Tue Oct 14 01:37:11 2008
@@ -480,6 +480,12 @@
<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>
More information about the llvm-commits
mailing list