diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-15 19:59:19 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-15 19:59:19 +0000 |
commit | b9ee3f896382654d9fb3433d9b26117d64b3d5d1 (patch) | |
tree | c4f22dae813eef08b2ce4223bf1c35076029d19e | |
parent | 5e24aa6490a49e372f42a7209d56fd904329aa41 (diff) | |
download | bcm5719-llvm-b9ee3f896382654d9fb3433d9b26117d64b3d5d1.tar.gz bcm5719-llvm-b9ee3f896382654d9fb3433d9b26117d64b3d5d1.zip |
Add a note about the raw_fd_ostream API change.
llvm-svn: 75818
-rw-r--r-- | llvm/docs/ReleaseNotes-2.6.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes-2.6.html b/llvm/docs/ReleaseNotes-2.6.html index efc7d91df49..362113c5feb 100644 --- a/llvm/docs/ReleaseNotes-2.6.html +++ b/llvm/docs/ReleaseNotes-2.6.html @@ -451,6 +451,12 @@ API changes are:</p> <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> |