[llvm-commits] [llvm] r75818 - /llvm/trunk/docs/ReleaseNotes-2.6.html

Dan Gohman gohman at apple.com
Wed Jul 15 12:59:19 PDT 2009


Author: djg
Date: Wed Jul 15 14:59:19 2009
New Revision: 75818

URL: http://llvm.org/viewvc/llvm-project?rev=75818&view=rev
Log:
Add a note about the raw_fd_ostream API change.

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=75818&r1=75817&r2=75818&view=diff

==============================================================================
--- llvm/trunk/docs/ReleaseNotes-2.6.html (original)
+++ llvm/trunk/docs/ReleaseNotes-2.6.html Wed Jul 15 14:59:19 2009
@@ -451,6 +451,12 @@
     <tt>CreateFNeg</tt> should now be used for floating-point arithmetic.</li>
 <li>The DynamicLibrary class can no longer be constructed, its functionality has
     moved to static member functions.</li>
+<li><tt>raw_fd_ostream</tt>'s constructor for opening a given filename now
+    takes an extra <tt>Force</tt> argument. If <tt>Force</tt> is set to
+    <tt>false</tt>, an error will be reported if a file with the given name
+    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>
 </ul>
 
 </div>





More information about the llvm-commits mailing list