summaryrefslogtreecommitdiffstats
path: root/llvm/docs
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2019-12-24 18:12:15 -0800
committerFangrui Song <maskray@google.com>2019-12-30 09:46:19 -0800
commit03b9f0a5e19aa68fb0a82d80e409333db7ee511c (patch)
treea7d756aaa2880d635c1ec9b95efc7105fe217095 /llvm/docs
parentee3eebba0d30f9a231bb10e59f3778c72065db22 (diff)
downloadbcm5719-llvm-03b9f0a5e19aa68fb0a82d80e409333db7ee511c.tar.gz
bcm5719-llvm-03b9f0a5e19aa68fb0a82d80e409333db7ee511c.zip
Ignore "no-frame-pointer-elim" and "no-frame-pointer-elim-non-leaf" in favor of "frame-pointer"
D56351 (included in LLVM 8.0.0) introduced "frame-pointer". All tests which use "no-frame-pointer-elim" or "no-frame-pointer-elim-non-leaf" have been migrated to use "frame-pointer". Implement UpgradeFramePointerAttributes to upgrade the two obsoleted function attributes for bitcode. Their semantics are ignored. Differential Revision: https://reviews.llvm.org/D71863
Diffstat (limited to 'llvm/docs')
-rw-r--r--llvm/docs/ReleaseNotes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 1b25a3fc128..96331a76f26 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -93,6 +93,11 @@ Non-comprehensive list of changes in this release
* ``Callbacks`` have been added to ``CommandLine Options``. These can
be used to validate of selectively enable other options.
+* The function attributes ``no-frame-pointer-elim`` and
+ ``no-frame-pointer-elim-non-leaf`` have been replaced by ``frame-pointer``,
+ which has 3 values: ``none``, ``non-leaf``, and ``all``. The values mean what
+ functions should retain frame pointers.
+
Changes to the LLVM IR
----------------------
OpenPOWER on IntegriCloud