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 | e4d54d72bd159e8b39da152557268da95a40800c (patch) | |
tree | dca574650ffe975c514ab5bb9d84562fe871a8c4 /docs | |
parent | 908e058b85df4c5b8eb63f103ebe1eb5f9ca0bef (diff) | |
download | external_llvm-e4d54d72bd159e8b39da152557268da95a40800c.zip external_llvm-e4d54d72bd159e8b39da152557268da95a40800c.tar.gz external_llvm-e4d54d72bd159e8b39da152557268da95a40800c.tar.bz2 |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes-2.6.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ReleaseNotes-2.6.html b/docs/ReleaseNotes-2.6.html index efc7d91..362113c 100644 --- a/docs/ReleaseNotes-2.6.html +++ b/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> |