From: Torok Edwin Date: Tue, 21 Jul 2009 20:27:10 +0000 (+0000) Subject: Add a few fairly obvious API changes I noticed while porting some old code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f6fa8ae267e0320dcee609b6bb4061bde3b62ba4;p=oota-llvm.git Add a few fairly obvious API changes I noticed while porting some old code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76636 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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.