diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 9aea45e63b2..6479a270f53 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -480,6 +480,12 @@ converted to strings using llvm::GetConstantStringInfo defined via
  • Various header files like "llvm/ADT/iterator" were given a .h suffix. Change your code to #include "llvm/ADT/iterator.h" instead.
  • +
  • In the code generator, many MachineOperand predicates were renamed to be + shorter (e.g. isFrameIndex() -> isFI()), + SDOperand was renamed to SDValue (and the "Val" + member was changed to be the getNode() accessor), and the + MVT::ValueType enum has been replaced with an "MVT" + struct.