Commit 2ae8a2c9 by Jakub Jelinek

re PR tree-optimization/91885 (ICE when compiling SPEC 2017 blender benchmark…

re PR tree-optimization/91885 (ICE when compiling SPEC 2017 blender benchmark with -O3 -fprofile-generate)

	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.

From-SVN: r276178
parent 6d4d616a
......@@ -188,9 +188,8 @@
2019-09-26 Martin Liska <mliska@suse.cz>
PR tree-optimization/91885
* tree-vectorizer.c (try_vectorize_loop_1):
Add TODO_update_ssa_only_virtuals similarly to what slp
pass does.
* tree-vectorizer.c (try_vectorize_loop_1): Add
TODO_update_ssa_only_virtuals similarly to what slp pass does.
2019-09-26 Richard Sandiford <richard.sandiford@arm.com>
......
2019-09-27 Jakub Jelinek <jakub@redhat.com>
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.
2019-09-27 Yuliang Wang <yuliang.wang@arm.com>
* gcc.target/aarch64/sve2/shracc_1.c: New test.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment