From 0ccb5b44355b07c99251ccfb929909897f785cac 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. llvm-svn: 57505 --- llvm/docs/ReleaseNotes.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 93a491f98943..db74ca1cb9c1 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/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.