[llvm-commits] [llvm] r76636 - /llvm/trunk/docs/ReleaseNotes-2.6.html
Torok Edwin
edwintorok at gmail.com
Tue Jul 21 13:27:16 PDT 2009
Author: edwin
Date: Tue Jul 21 15:27:10 2009
New Revision: 76636
URL: http://llvm.org/viewvc/llvm-project?rev=76636&view=rev
Log:
Add a few fairly obvious API changes I noticed while porting some old code.
Modified:
llvm/trunk/docs/ReleaseNotes-2.6.html
Modified: llvm/trunk/docs/ReleaseNotes-2.6.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes-2.6.html?rev=76636&r1=76635&r2=76636&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes-2.6.html (original)
+++ llvm/trunk/docs/ReleaseNotes-2.6.html Tue Jul 21 15:27:10 2009
@@ -457,6 +457,14 @@
already exists. If <tt>Force</tt> is set to <tt>true</tt>, the file will
be silently truncated (which is the behavior before this flag was
added).</li>
+<li><tt>SCEVHandle</tt> no longer exists, because reference counting is no
+longer done for <tt>SCEV*</tt> objects, instead <tt>const SCEV*</tt> should be
+used.</li>
+<li>llvm-dis now fails if output file exists, instead of dumping to stdout.
+FIXME: describe any other tool changes due to the raw_fd_ostream change</li>
+<li>temporarely due to Context API change passes should call doInitialization()
+method of the pass they inherit from, otherwise Context is NULL.
+FIXME: remove this entry when this is no longer needed.<li>
</ul>
</div>
More information about the llvm-commits
mailing list