From: Dan Gohman
Date: Wed, 15 Jul 2009 19:59:19 +0000 (+0000)
Subject: Add a note about the raw_fd_ostream API change.
X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e4d54d72bd159e8b39da152557268da95a40800c;p=oota-llvm.git
Add a note about the raw_fd_ostream API change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75818 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/ReleaseNotes-2.6.html b/docs/ReleaseNotes-2.6.html
index efc7d91df49..362113c5feb 100644
--- a/docs/ReleaseNotes-2.6.html
+++ b/docs/ReleaseNotes-2.6.html
@@ -451,6 +451,12 @@ API changes are:
CreateFNeg should now be used for floating-point arithmetic.
The DynamicLibrary class can no longer be constructed, its functionality has
moved to static member functions.
+raw_fd_ostream's constructor for opening a given filename now
+ takes an extra Force argument. If Force is set to
+ false, an error will be reported if a file with the given name
+ already exists. If Force is set to true, the file will
+ be silently truncated (which is the behavior before this flag was
+ added).