diff --git a/llvm/docs/ReleaseNotes-2.6.html b/llvm/docs/ReleaseNotes-2.6.html index eed5caf11d3b..6e99a60532c7 100644 --- a/llvm/docs/ReleaseNotes-2.6.html +++ b/llvm/docs/ReleaseNotes-2.6.html @@ -441,6 +441,14 @@ API changes are:

context which can be passed in any and all cases where a context is required.
  • The getABITypeSize methods are now called getAllocSize.
  • +
  • The Add, Sub, and Mul operators are no longer + overloaded for floating-point types. Floating-point addition, subtraction, + and multiplication are now represented with new operators FAdd, + FSub, and FMul. In the IRBuilder API, + CreateAdd, CreateSub, CreateMul, and + CreateNeg should only be used for integer arithmetic now; + CreateFAdd, CreateFSub, CreateFMul, and + CreateFNeg should now be used for floating-point arithmetic.