Hello community,

here is the log from the commit of package llvm9 for openSUSE:Factory checked 
in at 2020-07-14 07:58:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/llvm9 (Old)
 and      /work/SRC/openSUSE:Factory/.llvm9.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "llvm9"

Tue Jul 14 07:58:49 2020 rev:15 rq:820546 version:9.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/llvm9/llvm9.changes      2020-04-09 
23:14:43.430219147 +0200
+++ /work/SRC/openSUSE:Factory/.llvm9.new.3060/llvm9.changes    2020-07-14 
07:59:48.869891609 +0200
@@ -1,0 +2,5 @@
+Fri Jul 10 20:27:00 UTC 2020 - Aaron Puchert <[email protected]>
+
+- Add fix-ppcle64-build.patch to fix ppc64le build.
+
+-------------------------------------------------------------------

New:
----
  fix-ppcle64-build.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ llvm9.spec ++++++
--- /var/tmp/diff_new_pack.Qe0biP/_old  2020-07-14 07:59:50.037895391 +0200
+++ /var/tmp/diff_new_pack.Qe0biP/_new  2020-07-14 07:59:50.037895391 +0200
@@ -131,6 +131,8 @@
 Patch36:        compiler-rt-move-fdp.patch
 # PATCH-FIX-UPSTREAM compiler-rt-sanitizer-ipc-perm.patch -- Fix 
sanitizer-common build with glibc 2.31
 Patch37:        compiler-rt-sanitizer-ipc-perm.patch
+# PATCH-FIX-UPSTREAM fix-ppcle64-build.patch -- Fix ppcle64 build with newer 
GCC
+Patch38:        fix-ppcle64-build.patch
 BuildRequires:  binutils-devel >= 2.21.90
 BuildRequires:  cmake
 BuildRequires:  fdupes
@@ -580,6 +582,7 @@
 %patch26 -p1
 %patch30 -p1
 %patch31 -p1
+%patch38 -p1
 
 # We hardcode openSUSE
 rm unittests/Driver/DistroTest.cpp

++++++ fix-ppcle64-build.patch ++++++
>From 3185c30c54d0af5bffbff3bcfd721668d086ff10 Mon Sep 17 00:00:00 2001
From: serge-sans-paille <[email protected]>
Date: Thu, 6 Feb 2020 15:58:29 +0100
Subject: [PATCH] Prefer __vector over vector keyword for altivec

`vector' uses the keyword-and-predefine mode from gcc, while __vector is
reliably supported.

As a side effect, it also makes the code consistent in its usage of __vector.

Differential Revision: https://reviews.llvm.org/D74129
---
 lib/Lex/Lexer.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/Lex/Lexer.cpp b/lib/Lex/Lexer.cpp
index 9034726560d..a51745697b1 100644
--- a/lib/Lex/Lexer.cpp
+++ b/lib/Lex/Lexer.cpp
@@ -2552,8 +2552,8 @@ bool Lexer::SkipBlockComment(Token &Result, const char 
*CurPtr,
         '/', '/', '/', '/',  '/', '/', '/', '/',
         '/', '/', '/', '/',  '/', '/', '/', '/'
       };
-      while (CurPtr+16 <= BufferEnd &&
-             !vec_any_eq(*(const vector unsigned char*)CurPtr, Slashes))
+      while (CurPtr + 16 <= BufferEnd &&
+             !vec_any_eq(*(const __vector unsigned char *)CurPtr, Slashes))
         CurPtr += 16;
 #else
       // Scan for '/' quickly.  Many block comments are very large.
-- 
2.27.0


Reply via email to