[llvm-commits] [llvm] r135376 - /llvm/trunk/docs/ReleaseNotes.html
Chris Lattner
sabre at nondot.org
Sun Jul 17 21:56:02 PDT 2011
Author: lattner
Date: Sun Jul 17 23:56:02 2011
New Revision: 135376
URL: http://llvm.org/viewvc/llvm-project?rev=135376&view=rev
Log:
document this api change.
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=135376&r1=135375&r2=135376&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Sun Jul 17 23:56:02 2011
@@ -599,7 +599,10 @@
LLVM API changes are:</p>
<ul>
-
+<li>The biggest and most pervasive change is that llvm::Type's are no longer
+ returned or accepted as 'const' values. Instead, just pass around non-const
+ Type's.</li>
+
<li><code>PHINode::reserveOperandSpace</code> has been removed. Instead, you
must specify how many operands to reserve space for when you create the
PHINode, by passing an extra argument into <code>PHINode::Create</code>.</li>
More information about the llvm-commits
mailing list