From 9aeea5bd6aefddd8b4bcd72b0a517aff98b0ca40 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 14 Oct 2008 17:06:44 +0000 Subject: [PATCH] Mention a few methods in ConstantSDNode that were renamed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57505 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ReleaseNotes.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 93a491f9894..db74ca1cb9c 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -492,7 +492,10 @@ converted to strings using llvm::GetConstantStringInfo defined via 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. + struct. The getSignExtended and getValue methods in the + ConstantSDNode class were renamed to getSExtValue and + getZExtValue respectively, to be more consistent with + the ConstantInt class.