From 6f21daaec162b82f41c29c4552a971fd89df1902 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 14 Oct 2008 06:37:11 +0000 Subject: [PATCH] add some upgrading notes from Pekka. llvm-svn: 57480 --- llvm/docs/ReleaseNotes.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 9aea45e63b26..6479a270f530 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/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.