diff options
author | Torok Edwin <edwintorok@gmail.com> | 2010-09-28 13:47:20 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2010-09-28 13:47:20 +0000 |
commit | b72f73f13a88851327581323ce116e882e8745d2 (patch) | |
tree | 3ca89d7ebb72fe15da0ab063a5786d33d507c1b9 | |
parent | f928fd96fb4a0032e496b5783f837cd24820c7ec (diff) |
Document that Pass(char*) got replaced with Pass(char&).
This means that code wanting to be compatible needs to use ifdefs :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_28@114950 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ReleaseNotes.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 1535c28fa0..e6249a6d0b 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -323,6 +323,11 @@ expose new optimization opportunities:</p> have to dereference the iterators yourself and pass them in. </li> <li> +The <tt>Pass(intptr_t)</tt> and <tt>Pass(const void*)</tt> got replaced with a +<tt>Pass(char&)</tt> constructor. This means you have to use ifdefs if you +want your pass to work with both LLVM 2.7 and 2.8 +</li> +<li> llvm.memcpy.*, llvm.memset.*, llvm.memmove.* (and possibly other?) intrinsics take an extra parameter now (i1 isVolatile), totaling 5 parameters. If you were creating these intrinsic calls and prototypes yourself (as opposed @@ -359,7 +364,7 @@ expose new optimization opportunities:</p> <li>llvm_install_error_handler -> install_fatal_error_handler</li> <li>llvm::DwarfExceptionHandling -> llvm::JITExceptionHandling</li> </ul> -</li> + </li> </ul> </div> |