diff --git a/docs/ReleaseNotes-2.6.html b/docs/ReleaseNotes-2.6.html index 362113c5feb..3a32dc9c546 100644 --- a/docs/ReleaseNotes-2.6.html +++ b/docs/ReleaseNotes-2.6.html @@ -457,6 +457,14 @@ API changes are:

already exists. If Force is set to true, the file will be silently truncated (which is the behavior before this flag was added). +
  • SCEVHandle no longer exists, because reference counting is no +longer done for SCEV* objects, instead const SCEV* should be +used.
  • +
  • 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
  • +
  • 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.