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


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
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to