[PATCH] D65302: [clang][docs][release notes] mention asm goto support
Nick Desaulniers via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 25 15:44:25 PDT 2019
nickdesaulniers created this revision.
nickdesaulniers added reviewers: hans, tstellar.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
nickdesaulniers marked an inline comment as done.
nickdesaulniers added inline comments.
================
Comment at: clang/docs/ReleaseNotes.rst:116
+ control flow from inline assembly. The main consumer of this construct is the
+ Linux kernel and glib. There a few long tail bugs in Clang's integrated
+ assembler and IfConverter still being fixed related to the use of
----------------
I wasn't sure the best way to state something along the lines of "support is in beta shape, plz report bugz?"
add simple note
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D65302
Files:
clang/docs/ReleaseNotes.rst
Index: clang/docs/ReleaseNotes.rst
===================================================================
--- clang/docs/ReleaseNotes.rst
+++ clang/docs/ReleaseNotes.rst
@@ -111,6 +111,12 @@
in all C-family languages. This macro is similar to ``__FILE__`` except it
will always provide the last path component when possible.
+- Support for ``asm goto`` statements (a GNU C extension) has been added for
+ control flow from inline assembly. The main consumer of this construct is the
+ Linux kernel and glib. There a few long tail bugs in Clang's integrated
+ assembler and IfConverter still being fixed related to the use of
+ ``asm goto``.
+
- ...
C11 Feature Support
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65302.211843.patch
Type: text/x-patch
Size: 682 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190725/848d48fc/attachment.bin>
More information about the cfe-commits
mailing list