[llvm-branch-commits] [flang] 8f2c296 - [flang] Fix docs build

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Richard Barton
Date: 2020-09-16T10:49:14+02:00
New Revision: 8f2c29681ce768afb739b6cf5ccca81dd87d5326

URL: 
https://github.com/llvm/llvm-project/commit/8f2c29681ce768afb739b6cf5ccca81dd87d5326
DIFF: 
https://github.com/llvm/llvm-project/commit/8f2c29681ce768afb739b6cf5ccca81dd87d5326.diff

LOG: [flang] Fix docs build

Apply a local fix to an issue with recommonmark's AutoStructify extension
when used with certain versions of sphinx.

See https://github.com/readthedocs/recommonmark/issues/93

Reviewed By: hans

Differential Revision: https://reviews.llvm.org/D87714

(cherry picked from commit af56be339f8c9660747794cc6755384154602535)

Added: 


Modified: 
flang/docs/conf.py

Removed: 




diff  --git a/flang/docs/conf.py b/flang/docs/conf.py
index 21362fc3449e..f5eb283a186a 100644
--- a/flang/docs/conf.py
+++ b/flang/docs/conf.py
@@ -50,6 +50,17 @@
 
   # Setup AutoStructify for inline .rst toctrees in index.md
   from recommonmark.transform import AutoStructify
+
+  # Stolen from https://github.com/readthedocs/recommonmark/issues/93
+  # Monkey patch to fix recommonmark 0.4 doc reference issues.
+  from recommonmark.states import DummyStateMachine
+  orig_run_role = DummyStateMachine.run_role
+  def run_role(self, name, options=None, content=None):
+if name == 'doc':
+  name = 'any'
+  return orig_run_role(self, name, options, content)
+  DummyStateMachine.run_role = run_role
+
   def setup(app):
 # Disable inline math to avoid
 # https://github.com/readthedocs/recommonmark/issues/120 in Extensions.md



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [clang-tools-extra] 4a26e3b - [clangd] Actually parse Index section of the YAML file.

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Adam Czachorowski
Date: 2020-09-16T14:45:00+02:00
New Revision: 4a26e3b33798424dc5a4843f7b29a617bef81656

URL: 
https://github.com/llvm/llvm-project/commit/4a26e3b33798424dc5a4843f7b29a617bef81656
DIFF: 
https://github.com/llvm/llvm-project/commit/4a26e3b33798424dc5a4843f7b29a617bef81656.diff

LOG: [clangd] Actually parse Index section of the YAML file.

This fixes a bug in dbf486c0de92c76df77c1a1f815cf16533ecbb3a, which
introduced the Index section of the config, but did not register the
parse method, so it didn't work in a YAML file (but did in a test).

Differential Revision: https://reviews.llvm.org/D87710

(cherry picked from commit 7029e5d4ca20d20982da8efe89de27acd8d7d75b)

Added: 


Modified: 
clang-tools-extra/clangd/ConfigYAML.cpp
clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp

Removed: 




diff  --git a/clang-tools-extra/clangd/ConfigYAML.cpp 
b/clang-tools-extra/clangd/ConfigYAML.cpp
index 16639f6649c2..9988fe376648 100644
--- a/clang-tools-extra/clangd/ConfigYAML.cpp
+++ b/clang-tools-extra/clangd/ConfigYAML.cpp
@@ -38,6 +38,7 @@ class Parser {
 DictParser Dict("Config", this);
 Dict.handle("If", [&](Node &N) { parse(F.If, N); });
 Dict.handle("CompileFlags", [&](Node &N) { parse(F.CompileFlags, N); });
+Dict.handle("Index", [&](Node &N) { parse(F.Index, N); });
 Dict.parse(N);
 return !(N.failed() || HadError);
   }

diff  --git a/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp 
b/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
index a9526ce2367c..27b1c0cfc56d 100644
--- a/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
+++ b/clang-tools-extra/clangd/unittests/ConfigYAMLTests.cpp
@@ -47,16 +47,21 @@ CompileFlags: { Add: [foo, bar] }
   Add: |
 b
 az
+---
+Index:
+  Background: Skip
   )yaml";
   auto Results = Fragment::parseYAML(YAML, "config.yaml", Diags.callback());
   EXPECT_THAT(Diags.Diagnostics, IsEmpty());
-  ASSERT_EQ(Results.size(), 2u);
-  EXPECT_FALSE(Results.front().If.HasUnrecognizedCondition);
-  EXPECT_THAT(Results.front().If.PathMatch, ElementsAre(Val("abc")));
-  EXPECT_THAT(Results.front().CompileFlags.Add,
-  ElementsAre(Val("foo"), Val("bar")));
+  ASSERT_EQ(Results.size(), 3u);
+  EXPECT_FALSE(Results[0].If.HasUnrecognizedCondition);
+  EXPECT_THAT(Results[0].If.PathMatch, ElementsAre(Val("abc")));
+  EXPECT_THAT(Results[0].CompileFlags.Add, ElementsAre(Val("foo"), 
Val("bar")));
+
+  EXPECT_THAT(Results[1].CompileFlags.Add, ElementsAre(Val("b\naz\n")));
 
-  EXPECT_THAT(Results.back().CompileFlags.Add, ElementsAre(Val("b\naz\n")));
+  ASSERT_TRUE(Results[2].Index.Background);
+  EXPECT_EQ("Skip", *Results[2].Index.Background.getValue());
 }
 
 TEST(ParseYAML, Locations) {



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [clang] 1a51c11 - clang release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:10:31+02:00
New Revision: 1a51c113148a10a2d7313aae313039ef8e0db0cc

URL: 
https://github.com/llvm/llvm-project/commit/1a51c113148a10a2d7313aae313039ef8e0db0cc
DIFF: 
https://github.com/llvm/llvm-project/commit/1a51c113148a10a2d7313aae313039ef8e0db0cc.diff

LOG: clang release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
clang/docs/ReleaseNotes.rst

Removed: 




diff  --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index 1c02c478be68..0ccaa7a82121 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -1,6 +1,6 @@
-
-Clang 11.0.0 (In-Progress) Release Notes
-
+==
+Clang 11.0.0 Release Notes
+==
 
 .. contents::
:local:
@@ -8,12 +8,6 @@ Clang 11.0.0 (In-Progress) Release Notes
 
 Written by the `LLVM Team `_
 
-.. warning::
-
-   These are in-progress notes for the upcoming Clang 11 release.
-   Release notes for previous releases can be found on
-   `the Download Page `_.
-
 Introduction
 
 
@@ -30,11 +24,6 @@ For more information about Clang or LLVM, including 
information about the
 latest release, please see the `Clang Web Site `_ or 
the
 `LLVM Web Site `_.
 
-Note that if you are reading this file from a Git checkout or the
-main Clang web page, this document applies to the *next* release, not
-the current one. To see the release notes for a specific release, please
-see the `releases page `_.
-
 What's New in Clang 11.0.0?
 ===
 
@@ -43,13 +32,9 @@ here. Generic improvements to Clang as a whole or to its 
underlying
 infrastructure are described first, followed by language-specific
 sections with improvements to Clang's support for those languages.
 
-Major New Features
---
-
-- ...
 
 Recovery AST
-
+
 
 clang's AST now improves support for representing broken C++ code. This 
improves
 the quality of subsequent diagnostics after an error is encountered. It also
@@ -89,7 +74,7 @@ This feature is on by default for C++ code, and can be 
explicitly controlled
 with `-Xclang -f[no-]recovery-ast`.
 
 Improvements to Clang's diagnostics
-^^^
+---
 
 - -Wpointer-to-int-cast is a new warning group. This group warns about C-style
   casts of pointers to a integer type too small to hold all possible values.
@@ -269,13 +254,6 @@ New Compiler Flags
   compiler support will continue to change until the specification is
   finalised.
 
-Deprecated Compiler Flags
--
-
-The following options are deprecated and ignored. They will be removed in
-future versions of Clang.
-
-- ...
 
 Modified Compiler Flags
 ---
@@ -346,8 +324,6 @@ C Language Changes in Clang
 - Clang now supports the GNU C extension `asm inline`; it won't do anything
   *yet*, but it will be parsed.
 
-- ...
-
 C++ Language Changes in Clang
 -
 
@@ -389,13 +365,6 @@ C++ Language Changes in Clang
   int f() { return 0; }
 } S;
 
-C++1z Feature Support
-^
-
-...
-
-Objective-C Language Changes in Clang
--
 
 OpenCL Kernel Language Changes in Clang
 ---
@@ -420,7 +389,7 @@ OpenCL Kernel Language Changes in Clang
   `cl_arm_integer_dot_product`.
 
 Changes related to C++ for OpenCL
-^
+-
 
 - Added `addrspace_cast` operator.
 
@@ -486,10 +455,6 @@ New features for OpenMP 5.0 were implemented.
 
 - Bug fixes and optimizations.
 
-CUDA Support in Clang
--
-
-- ...
 
 Internal API Changes
 
@@ -538,11 +503,6 @@ release of Clang. Users of the build system should adjust 
accordingly.
   something you need, please reach out to the mailing list to discuss possible
   ways forward.
 
-AST Matchers
-
-
-- ...
-
 clang-format
 
 
@@ -644,10 +604,6 @@ clang-format
 foo();
   } while(1);
 
-libclang
-
-
-- ...
 
 .. _release-notes-clang-static-analyzer:
 
@@ -723,28 +679,6 @@ Static Analyzer
 
 .. _release-notes-ubsan:
 
-Undefined Behavior Sanitizer (UBSan)
-
-
-Core Analysis Improvements
-==
-
-- ...
-
-New Issues Found
-
-
-- ...
-
-Python Binding Changes
---
-
-The following methods have been added:
-
--  ...
-
-Significant Known Problems
-==
 
 Additional Information
 ==



__

[llvm-branch-commits] [llvm] 339a0e2 - llvm release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:03:14+02:00
New Revision: 339a0e2d114ecd15eb7289425851e356af7bb8a7

URL: 
https://github.com/llvm/llvm-project/commit/339a0e2d114ecd15eb7289425851e356af7bb8a7
DIFF: 
https://github.com/llvm/llvm-project/commit/339a0e2d114ecd15eb7289425851e356af7bb8a7.diff

LOG: llvm release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
llvm/docs/ReleaseNotes.rst

Removed: 




diff  --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 977ba26f9e23..2af813fda1aa 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -5,12 +5,6 @@ LLVM 11.0.0 Release Notes
 .. contents::
 :local:
 
-.. warning::
-   These are in-progress notes for the upcoming LLVM 11 release.
-   Release notes for previous releases can be found on
-   `the Download Page `_.
-
-
 Introduction
 
 
@@ -26,48 +20,16 @@ have questions or comments, the `LLVM Developer's Mailing 
List
 `_ is a good place to send
 them.
 
-Note that if you are reading this file from a Git checkout or the main
-LLVM web page, this document applies to the *next* release, not the current
-one.  To see the release notes for a specific release, please see the `releases
-page `_.
-
 Deprecated and Removed Features/APIs
 =
 * BG/Q support, including QPX, will be removed in the 12.0.0 release.
 
 Non-comprehensive list of changes in this release
 =
-.. NOTE
-   For small 1-3 sentence descriptions, just add an entry at the end of
-   this list. If your description won't fit comfortably in one bullet
-   point (e.g. maybe you would like to give an example of the
-   functionality, or simply have a lot to talk about), see the `NOTE` below
-   for adding a new subsection.
-
-* The LLVM project has started the migration towards Python 3, and the build
-  system now prefers Python 3 whenever available.  If the Python 3 interpreter
-  (or libraries) are not found, the build system will, for the time being, fall
-  back to Python 2.  It is recommended that downstream projects migrate to
-  Python 3 as Python 2 has been end-of-life'd by the Python Software
-  Foundation.
 
 * The llgo frontend has been removed for now, but may be resurrected in the
   future.
 
-* ...
-
-
-.. NOTE
-   If you would like to document a larger change, then you can add a
-   subsection about it right here. You can copy the following boilerplate
-   and un-indent it (the indentation causes it to be inside this comment).
-
-   Special New Feature
-   ---
-
-   Makes programs 10x faster by doing Special New Thing.
-
-
 Changes to the LLVM IR
 --
 
@@ -116,6 +78,13 @@ Changes to the LLVM IR
 Changes to building LLVM
 
 
+* The LLVM project has started the migration towards Python 3, and the build
+  system now prefers Python 3 whenever available.  If the Python 3 interpreter
+  (or libraries) are not found, the build system will, for the time being, fall
+  back to Python 2.  It is recommended that downstream projects migrate to
+  Python 3 as Python 2 has been end-of-life'd by the Python Software
+  Foundation.
+
 Changes to the AArch64 Backend
 --
 
@@ -134,6 +103,7 @@ Changes to the AArch64 Backend
 * Added support for Armv8.6-A:
 
   Assembly support for the following extensions:
+
   - Enhanced Counter Virtualization (ARMv8.6-ECV).
   - Fine Grained Traps (ARMv8.6-FGT).
   - Activity Monitors virtualization (ARMv8.6-AMU).
@@ -179,11 +149,6 @@ Changes to the ARM Backend
 
 * Added support for Cortex-M55, Cortex-A77, Cortex-A78 and Cortex-X1 cores.
 
-Changes to the MIPS Target
---
-
-During this release ...
-
 
 Changes to the PowerPC Target
 -
@@ -228,6 +193,7 @@ Changes to the RISC-V Target
 
 
 New features:
+
 * After consultation through an RFC, the RISC-V backend now accepts patches for
   proposed instruction set extensions that have not yet been ratified.  For 
these
   experimental extensions, there is no expectation of ongoing support - the
@@ -244,6 +210,7 @@ New features:
 * llvm-objdump will now print branch targets as part of disassembly.
 
 Improvements:
+
 * If an immediate can be generated using a pair of `addi` instructions, that
   pair will be selected rather than materialising the immediate into a
   separate register with an `lui` and `addi` pair.
@@ -265,6 +232,7 @@ Improvements:
 * The `jump` pseudo instruction is now supported.
 
 Bug fixes:
+
 * A failure to insert indirect branches in position independent code
   was fixed.
 * The calculated expanded size of atomic pseudo operations was fixed, avoiding
@@ -2

[llvm-branch-commits] [lld] 6afefb4 - lld release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:16:34+02:00
New Revision: 6afefb45dbffc4a8187192f3c70655343a10febf

URL: 
https://github.com/llvm/llvm-project/commit/6afefb45dbffc4a8187192f3c70655343a10febf
DIFF: 
https://github.com/llvm/llvm-project/commit/6afefb45dbffc4a8187192f3c70655343a10febf.diff

LOG: lld release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
lld/docs/ReleaseNotes.rst

Removed: 




diff  --git a/lld/docs/ReleaseNotes.rst b/lld/docs/ReleaseNotes.rst
index 880f933e51be..fcb8eaefa594 100644
--- a/lld/docs/ReleaseNotes.rst
+++ b/lld/docs/ReleaseNotes.rst
@@ -5,11 +5,6 @@ lld 11.0.0 Release Notes
 .. contents::
 :local:
 
-.. warning::
-   These are in-progress notes for the upcoming LLVM 11.0.0 release.
-   Release notes for previous releases can be found on
-   `the Download Page `_.
-
 Introduction
 
 
@@ -176,12 +171,3 @@ MinGW Improvements
   ``--disable-runtime-pseudo-reloc``), the ``--no-seh`` flag and options
   for selecting file and section alignment (``--file-alignment`` and
   ``--section-alignment``).
-
-MachO Improvements
---
-
-* Item 1.
-
-WebAssembly Improvements
-
-



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [clang-tools-extra] 19d7a9f - clang-tools-extra release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:14:46+02:00
New Revision: 19d7a9fa9d665c75655db70873782e60cad56bb7

URL: 
https://github.com/llvm/llvm-project/commit/19d7a9fa9d665c75655db70873782e60cad56bb7
DIFF: 
https://github.com/llvm/llvm-project/commit/19d7a9fa9d665c75655db70873782e60cad56bb7.diff

LOG: clang-tools-extra release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
clang-tools-extra/docs/ReleaseNotes.rst

Removed: 




diff  --git a/clang-tools-extra/docs/ReleaseNotes.rst 
b/clang-tools-extra/docs/ReleaseNotes.rst
index 83ae2c6605fd..0471c5e9c4eb 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -1,6 +1,6 @@
-
-Extra Clang Tools 11.0.0 (In-Progress) Release Notes
-
+==
+Extra Clang Tools 11.0.0 Release Notes
+==
 
 .. contents::
:local:
@@ -8,12 +8,6 @@ Extra Clang Tools 11.0.0 (In-Progress) Release Notes
 
 Written by the `LLVM Team `_
 
-.. warning::
-
-   These are in-progress notes for the upcoming Extra Clang Tools 11 release.
-   Release notes for previous releases can be found on
-   `the Download Page `_.
-
 Introduction
 
 
@@ -27,11 +21,6 @@ For more information about Clang or LLVM, including 
information about
 the latest release, please see the `Clang Web Site `_ 
or
 the `LLVM Web Site `_.
 
-Note that if you are reading this file from a Git checkout or the
-main Clang web page, this document applies to the *next* release, not
-the current one. To see the release notes for a specific release, please
-see the `releases page `_.
-
 What's New in Extra Clang Tools 11.0.0?
 ===
 
@@ -39,11 +28,6 @@ Some of the major new features and improvements to Extra 
Clang Tools are listed
 here. Generic improvements to Extra Clang Tools as a whole or to its underlying
 infrastructure are described first, followed by tool-specific sections.
 
-Major New Features
---
-
-...
-
 Improvements to clangd
 --
 
@@ -238,21 +222,6 @@ Miscellaneous
 
 - Too many stability and correctness fixes to mention.
 
-Improvements to clang-doc
--
-
-The improvements are...
-
-Improvements to clang-query

-
-The improvements are...
-
-Improvements to clang-rename
-
-
-The improvements are...
-
 Improvements to clang-tidy
 --
 
@@ -439,26 +408,3 @@ Other improvements
 
 - For `run-clang-tidy.py` add option to use alpha checkers from
   `clang-analyzer`.
-
-Improvements to include-fixer
--
-
-The improvements are...
-
-Improvements to clang-include-fixer

-
-The improvements are...
-
-Improvements to modularize
---
-
-The improvements are...
-
-Improvements to pp-trace
-
-
-The improvements are...
-
-Clang-tidy visual studio plugin




___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [openmp] f9572ab - openmp release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:21:17+02:00
New Revision: f9572abae17c483c861702d440b4eeb0f08879d1

URL: 
https://github.com/llvm/llvm-project/commit/f9572abae17c483c861702d440b4eeb0f08879d1
DIFF: 
https://github.com/llvm/llvm-project/commit/f9572abae17c483c861702d440b4eeb0f08879d1.diff

LOG: openmp release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
openmp/docs/ReleaseNotes.rst

Removed: 




diff  --git a/openmp/docs/ReleaseNotes.rst b/openmp/docs/ReleaseNotes.rst
index b7f2ec42277e..e09ef5f5b638 100644
--- a/openmp/docs/ReleaseNotes.rst
+++ b/openmp/docs/ReleaseNotes.rst
@@ -5,11 +5,6 @@ openmp 11.0.0 Release Notes
 .. contents::
 :local:
 
-.. warning::
-   These are in-progress notes for the upcoming LLVM 11.0.0 release.
-   Release notes for previous releases can be found on
-   `the Download Page `_.
-
 Introduction
 
 
@@ -21,16 +16,6 @@ from the `LLVM releases web site 
`_.
 Non-comprehensive list of changes in this release
 =
 
-5.0 features
-
-
-* ...
-
-5.1 features
-
-
-* ...
-
 OMPT Improvements
 -
 



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [libcxx] 952e7c3 - libc++ release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:20:04+02:00
New Revision: 952e7c3b81ffa34130b571afe028debc0ef36691

URL: 
https://github.com/llvm/llvm-project/commit/952e7c3b81ffa34130b571afe028debc0ef36691
DIFF: 
https://github.com/llvm/llvm-project/commit/952e7c3b81ffa34130b571afe028debc0ef36691.diff

LOG: libc++ release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
libcxx/docs/ReleaseNotes.rst

Removed: 




diff  --git a/libcxx/docs/ReleaseNotes.rst b/libcxx/docs/ReleaseNotes.rst
index 1db79153ed89..001957570c90 100644
--- a/libcxx/docs/ReleaseNotes.rst
+++ b/libcxx/docs/ReleaseNotes.rst
@@ -1,6 +1,6 @@
-=
-Libc++ 11.0.0 (In-Progress) Release Notes
-=
+===
+Libc++ 11.0.0 Release Notes
+===
 
 .. contents::
:local:
@@ -8,12 +8,6 @@ Libc++ 11.0.0 (In-Progress) Release Notes
 
 Written by the `Libc++ Team `_
 
-.. warning::
-
-   These are in-progress notes for the upcoming libc++ 11 release.
-   Release notes for previous releases can be found on
-   `the Download Page `_.
-
 Introduction
 
 
@@ -27,11 +21,6 @@ be downloaded from the `LLVM releases web site 
`_.
 For more information about libc++, please see the `Libc++ Web Site
 `_ or the `LLVM Web Site `_.
 
-Note that if you are reading this file from a Git checkout or the
-main Libc++ web page, this document applies to the *next* release, not
-the current one. To see the release notes for a specific release, please
-see the `releases page `_.
-
 What's New in Libc++ 11.0.0?
 
 
@@ -39,7 +28,3 @@ New Features
 
 
 - 
-
-API Changes

-- ...



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [polly] c2f4de3 - polly release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:22:02+02:00
New Revision: c2f4de353b2e9f6658febe5735c615ee433fd062

URL: 
https://github.com/llvm/llvm-project/commit/c2f4de353b2e9f6658febe5735c615ee433fd062
DIFF: 
https://github.com/llvm/llvm-project/commit/c2f4de353b2e9f6658febe5735c615ee433fd062.diff

LOG: polly release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
polly/docs/ReleaseNotes.rst

Removed: 




diff  --git a/polly/docs/ReleaseNotes.rst b/polly/docs/ReleaseNotes.rst
index ab95eae4e57e..8aaa6f0564da 100644
--- a/polly/docs/ReleaseNotes.rst
+++ b/polly/docs/ReleaseNotes.rst
@@ -1,17 +1,9 @@
-=
-Release Notes 11.0 (upcoming)
-=
+==
+Release Notes 11.0
+==
 
 In Polly 11 the following important changes have been incorporated.
 
-.. warning::
-
-  These releaes notes are for the next release of Polly and describe
-  the new features that have recently been committed to our development
-  branch.
-
-- Change ...
-
  * The LLVM option -polly-isl-arg was added to pass options to ISL's
command line option parser. For instance,
-polly-isl-arg=--schedule-algorithm=feautrier switches to the



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits


[llvm-branch-commits] [flang] 34c21f8 - flang release notes: drop in-progress warnings; minor cleanups

2020-09-16 Thread Hans Wennborg via llvm-branch-commits

Author: Hans Wennborg
Date: 2020-09-16T17:18:40+02:00
New Revision: 34c21f8dbe656969c209803012234901a1d4ae19

URL: 
https://github.com/llvm/llvm-project/commit/34c21f8dbe656969c209803012234901a1d4ae19
DIFF: 
https://github.com/llvm/llvm-project/commit/34c21f8dbe656969c209803012234901a1d4ae19.diff

LOG: flang release notes: drop in-progress warnings; minor cleanups

Added: 


Modified: 
flang/docs/ReleaseNotes.md

Removed: 




diff  --git a/flang/docs/ReleaseNotes.md b/flang/docs/ReleaseNotes.md
index b891ab904a04..19939a539c43 100644
--- a/flang/docs/ReleaseNotes.md
+++ b/flang/docs/ReleaseNotes.md
@@ -1,10 +1,4 @@
-# Flang 11.0.0 (In-Progress) Release Notes
-
-> **warning**
->
-> These are in-progress notes for the upcoming LLVM 11.0.0 release.
-> Release notes for previous releases can be found on [the Download
-> Page](https://releases.llvm.org/download.html).
+# Flang 11.0.0 Release Notes
 
 ## Introduction
 
@@ -17,18 +11,6 @@ documentation](https://llvm.org/docs/ReleaseNotes.html). All 
LLVM
 releases may be downloaded from the [LLVM releases web
 site](https://llvm.org/releases/).
 
-Note that if you are reading this file from a Git checkout, this
-document applies to the *next* release, not the current one. To see the
-release notes for a specific release, please see the [releases
-page](https://llvm.org/releases/).
-
-## Known Issues
-
-These are issues that couldn't be fixed before the release. See the bug
-reports for the latest status.
-
- *   ...
-
 ## Introducing Flang
 
 Flang is LLVM's Fortran front end and is new for the LLVM 11 release.



___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits