From 0acd1a9d1205c8b4743ba4799b65f7c2b446bb27 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Mon, 18 Jul 2011 04:56:02 +0000
Subject: [PATCH] document this api change.
llvm-svn: 135376
---
docs/ReleaseNotes.html | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 374615d991c..590bdaee3d2 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -599,7 +599,10 @@ from the previous release.
LLVM API changes are:
-
+- The biggest and most pervasive change is that llvm::Type's are no longer
+ returned or accepted as 'const' values. Instead, just pass around non-const
+ Type's.
+
PHINode::reserveOperandSpace
has been removed. Instead, you
must specify how many operands to reserve space for when you create the
PHINode, by passing an extra argument into PHINode::Create
.