From eeb4da0f69fe67ed500fff8090783333602ed993 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Mon, 13 Oct 2008 22:06:31 +0000
Subject: [PATCH] more changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57470 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/ReleaseNotes.html | 76 ++++++++++++++++++++++--------------------
1 file changed, 39 insertions(+), 37 deletions(-)
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 6051d7a0a26..aefa4f1d8f3 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -368,7 +368,7 @@ faster:
@@ -378,25 +378,8 @@ faster:
- Exception handling is supported by default on Linux/x86-64.
- Position Independent Code (PIC) is now supported on Linux/x86-64.
-- ...
-
-
-
-
-
-
-
-
New target-specific features include:
-
-
-
-- MIPS floating point support?
-- PowerPC now supports trampolines.
-- ....
+- MIPS floating point support? [BRUNO]
+- The PowerPC backend now supports trampolines.
@@ -413,11 +396,17 @@ faster:
-
If you're already an LLVM user, this section lists some "gotchas" that you
-may run into upgrading from the previous release.
-
-
The LLVM IR generated by llvm-gcc no longer names all instructions.
- Use the instnamer pass if you want everything named.
-
-
The LoadVN and GCSE passes have been removed.
-
-
-
LLVM API Changes:
+
If you're already an LLVM user or developer with out-of-tree changes based
+on LLVM 2.3, this section lists some "gotchas" that you may run into upgrading
+from the previous release.
-- ... Attributes changes ...
+- The LLVM IR generated by llvm-gcc no longer names all instructions. This
+ makes it run faster, but may be more confusing to some people. If you
+ prefer to have names, the 'opt -instnamer' pass will add names to
+ all instructions.
+
+- The LoadVN and GCSE passes have been removed from the tree. They are
+ obsolete and have been replaced with the GVN and MemoryDependence passes.
+
+
+
+
+
In addition, many APIs have changed in this release. Some of the major LLVM
+API changes are:
+
+
+
+- Attributes changes [DEVANG]
- The DbgStopPointInst methods getDirectory and
getFileName now return Value* instead of strings. These can be
converted to strings using llvm::GetConstantStringInfo defined via
"llvm/Analysis/ValueTracking.h".
-- API change: BinaryOperator::create -> Create (CmpInst, CastInst too)
+- The APIs to create various instructions have changed from lower case
+ "create" methods to upper case "Create" methods (e.g.
+ BinaryOperator::create). LLVM 2.4 includes both cases, but the
+ lower case ones are removed in mainline, please migrate.
+
- Various header files like "llvm/ADT/iterator" were given a .h suffix.
Change your code to #include "llvm/ADT/iterator.h" instead.