diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-05-04 01:29:20 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-05-04 08:59:47 +0200 |
commit | 125048ad7d212c1f226b709697505b0ee6a079e4 (patch) | |
tree | 4d930a5b4d508518dedfc25375251fe24dda7b92 /source/d/gcc/patches/revert-asm-inline/3-8-c-Delete-a-stray-line-in-asm-inline.patch | |
parent | fe8c535f50697455b55b8ded880317ac33910704 (diff) | |
download | current-125048ad7d212c1f226b709697505b0ee6a079e4.tar.gz |
Sat May 4 01:29:20 UTC 201920190504012920
d/gcc-9.1.0-x86_64-1.txz: Upgraded.
d/gcc-brig-9.1.0-x86_64-1.txz: Upgraded.
d/gcc-g++-9.1.0-x86_64-1.txz: Upgraded.
d/gcc-gfortran-9.1.0-x86_64-1.txz: Upgraded.
d/gcc-gnat-9.1.0-x86_64-1.txz: Upgraded.
d/gcc-go-9.1.0-x86_64-1.txz: Upgraded.
Shared library .so-version bump.
d/gcc-objc-9.1.0-x86_64-1.txz: Upgraded.
d/libtool-2.4.6-x86_64-11.txz: Rebuilt.
Recompiled to update embedded GCC version number.
d/llvm-8.0.0-x86_64-2.txz: Rebuilt.
Recompiled with -DLLVM_INSTALL_UTILS=ON. Thanks to Lockywolf.
d/swig-4.0.0-x86_64-1.txz: Upgraded.
l/glib2-2.60.2-x86_64-1.txz: Upgraded.
l/qt-4.8.7-x86_64-13.txz: Rebuilt.
Patched to fix FTBFS with gcc9 (also fixes FTBFS with qtscriptgenerator and
possibly other projects that use qt4).
Diffstat (limited to 'source/d/gcc/patches/revert-asm-inline/3-8-c-Delete-a-stray-line-in-asm-inline.patch')
-rw-r--r-- | source/d/gcc/patches/revert-asm-inline/3-8-c-Delete-a-stray-line-in-asm-inline.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/source/d/gcc/patches/revert-asm-inline/3-8-c-Delete-a-stray-line-in-asm-inline.patch b/source/d/gcc/patches/revert-asm-inline/3-8-c-Delete-a-stray-line-in-asm-inline.patch deleted file mode 100644 index 043df146..00000000 --- a/source/d/gcc/patches/revert-asm-inline/3-8-c-Delete-a-stray-line-in-asm-inline.patch +++ /dev/null @@ -1,45 +0,0 @@ -From patchwork Thu Dec 27 14:59:08 2018 -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Subject: [3/8] c: Delete a stray line in asm inline -X-Patchwork-Submitter: Segher Boessenkool <segher@kernel.crashing.org> -X-Patchwork-Id: 13819 -Message-Id: <35014fbfa36ce89dd26fdf43387416a907be4782.1545922222.git.segher@kernel.crashing.org> -To: gcc-patches@gcc.gnu.org -Cc: Segher Boessenkool <segher@kernel.crashing.org> -Date: Thu, 27 Dec 2018 14:59:08 +0000 -From: Segher Boessenkool <segher@kernel.crashing.org> -List-Id: <gcc-patches.gcc.gnu.org> - -I noticed I accidentally copied a line too many from the "volatile" -handling to the "inline" handling. This fixes it. - -Tested on powerpc64-linux {-m32,-m64}; committing as trivial and obvious. - -Segher - -2018-12-08 Segher Boessenkool <segher@kernel.crashing.org> - -gcc/c/ - * c-parser (c_parser_asm_statement) [RID_INLINE]: Delete stray line - setting "quals". ---- - gcc/c/c-parser.c | 1 - - 1 file changed, 1 deletion(-) - --- -1.8.3.1 - -diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c -index 51cc2be..e45f70b 100644 ---- a/gcc/c/c-parser.c -+++ b/gcc/c/c-parser.c -@@ -6321,7 +6321,6 @@ c_parser_asm_statement (c_parser *parser) - if (!is_inline) - { - is_inline = true; -- quals = c_parser_peek_token (parser)->value; - c_parser_consume_token (parser); - } - else |