diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-27 04:39:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-27 04:39:23 +0000 |
commit | f322a9807ac3d3c5063e338e0f421e76d3c752fc (patch) | |
tree | e52ba6f453b1a89e6c69517c4ea00f58f4e53c50 | |
parent | 622addbe49ffdc611adb315fb22756e23fe7b222 (diff) |
mention getresult -> extractvalue (PR2935)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58226 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ReleaseNotes.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 446e0186b2..b8bd5f54f0 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -545,6 +545,10 @@ converted to strings using <tt>llvm::GetConstantStringInfo</tt> defined via <li>Various header files like "<tt>llvm/ADT/iterator</tt>" were given a ".h" suffix. Change your code to #include "<tt>llvm/ADT/iterator.h</tt>" instead.</li> +<li>The <tt>getresult</tt> instruction has been removed and replaced with the + <tt>extractvalue</tt> instruction. This is part of support for first class + aggregates.</li> + <li>In the code generator, many <tt>MachineOperand</tt> predicates were renamed to be shorter (e.g. <tt>isFrameIndex()</tt> -> <tt>isFI()</tt>), <tt>SDOperand</tt> was renamed to <tt>SDValue</tt> (and the "<tt>Val</tt>" |