From e1299829fce26b60105e09e2c6e60d8b998a566b Mon Sep 17 00:00:00 2001 From: jakub Date: Fri, 27 Sep 2019 10:28:48 +0000 Subject: [PATCH 2/2] Backport r276178 gcc/ChangeLog: * tree-vectorizer.c (try_vectorize_loop_1): Add TODO_update_ssa_only_virtuals similarly to what slp pass does. gcc/testsuite/ChangeLog: 2019-09-27 Jakub Jelinek PR tree-optimization/91885 * gcc.dg/pr91885.c (__int64_t): Change from long to long long. (__uint64_t): Change from unsigned long to unsigned long long. --- gcc/testsuite/gcc.dg/pr91885.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.dg/pr91885.c b/gcc/testsuite/gcc.dg/pr91885.c index 934e8d3e6c3..35be32be559 100644 --- a/gcc/testsuite/gcc.dg/pr91885.c +++ b/gcc/testsuite/gcc.dg/pr91885.c @@ -2,8 +2,8 @@ /* { dg-options "-O3 -fprofile-generate" } */ /* { dg-require-profiling "-fprofile-generate" } */ -typedef signed long int __int64_t; -typedef unsigned long int __uint64_t; +typedef signed long long int __int64_t; +typedef unsigned long long int __uint64_t; typedef __int64_t int64_t; typedef __uint64_t uint64_t; inline void -- 2.23.0