Commit ea063871 by Richard Biener Committed by Richard Biener

re PR tree-optimization/81410 (-O3 breaks code)

2017-07-25  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/81410
	* gcc.dg/vect/pr81410.c: Do not typedef uint64_t.

From-SVN: r250506
parent 01614e64
2017-07-25 Richard Biener <rguenther@suse.de>
PR tree-optimization/81410
* gcc.dg/vect/pr81410.c: Do not typedef uint64_t.
2017-07-25 Richard Biener <rguenther@suse.de>
PR tree-optimization/81510
* gcc.dg/torture/pr81510.c: New testcase.
* gcc.dg/torture/pr81510-2.c: Likewise.
......
......@@ -3,10 +3,9 @@
#include "tree-vect.h"
typedef long long uint64_t;
uint64_t x[24];
uint64_t y[16];
uint64_t z[8];
long long x[24];
long long y[16];
long long z[8];
void __attribute__((noinline)) foo()
{
......
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