From 7b477a48c7c42b3ef9f53685a45eb125bcc9ab38 Mon Sep 17 00:00:00 2001 From: Alexander Batashev Date: Tue, 15 Jun 2021 11:04:52 +0300 Subject: [PATCH 1/2] [CI][Doc] Adapt GitHub Actions to an increased number of documentation files --- .github/workflows/gh_pages.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gh_pages.yml b/.github/workflows/gh_pages.yml index 77ed80420a58c..15cd735b6d336 100644 --- a/.github/workflows/gh_pages.yml +++ b/.github/workflows/gh_pages.yml @@ -41,12 +41,9 @@ jobs: git rm -rf . touch .nojekyll yes | \cp -rf $GITHUB_WORKSPACE/build/tools/sycl/doc/html/* . - mkdir doxygen - yes | \cp -rf $GITHUB_WORKSPACE/build/tools/sycl/doc/doxygen/html/* doxygen/ - mkdir clang - yes | \cp -rf $GITHUB_WORKSPACE/build/tools/clang/docs/html/* clang/ - mkdir clang_doxygen - yes | \cp -rf $GITHUB_WORKSPACE/build/tools/clang/docs/doxygen/html/* clang_doxygen/ + mv $GITHUB_WORKSPACE/build/tools/sycl/doc/doxygen/html doxygen/ + mv $GITHUB_WORKSPACE/build/tools/clang/docs/html clang/ + mv $GITHUB_WORKSPACE/build/tools/clang/docs/doxygen/html clang_doxygen/ git config --global user.name "iclsrc" git config --global user.email "ia.compiler.tools.git@intel.com" git add . From cd455c6a7c9e53975bd652823717ccca5fcb1563 Mon Sep 17 00:00:00 2001 From: Alexander Batashev Date: Tue, 15 Jun 2021 11:09:03 +0300 Subject: [PATCH 2/2] minor fix --- clang/docs/LanguageExtensions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/docs/LanguageExtensions.rst b/clang/docs/LanguageExtensions.rst index 106696cf238d2..36aaecd17999f 100644 --- a/clang/docs/LanguageExtensions.rst +++ b/clang/docs/LanguageExtensions.rst @@ -2453,7 +2453,7 @@ their usual pattern without any special treatment. constexpr const char * __builtin_sycl_unique_stable_name( type-id ); ``__builtin_sycl_unique_stable_id`` ----------------------------------- +----------------------------------- Like ``__builtin_sycl_unique_stable_name``, this builtin generates a unique and stable name as a string literal to support sharing it across split compliations.