Commit 7dbf36f7 by Richard Biener Committed by Richard Biener

vect-strided-a-u8-i8-gap7-big-array.c: Fix uninitialized y guarding a call to abort ().

2015-12-02  Richard Biener  <rguenther@suse.de>

	* gcc.dg/vect/vect-strided-a-u8-i8-gap7-big-array.c: Fix uninitialized
	y guarding a call to abort ().
	* gcc.dg/vect/vect-strided-a-u8-i8-gap7.c: Likewise.
	* gcc.dg/vect/vect-strided-u8-i8-gap7-big-array.c: Likewise.

From-SVN: r231168
parent 01e3391a
2015-12-02 Richard Biener <rguenther@suse.de>
* gcc.dg/vect/vect-strided-a-u8-i8-gap7-big-array.c: Fix uninitialized
y guarding a call to abort ().
* gcc.dg/vect/vect-strided-a-u8-i8-gap7.c: Likewise.
* gcc.dg/vect/vect-strided-u8-i8-gap7-big-array.c: Likewise.
2015-12-02 Marek Polacek <polacek@redhat.com>
PR middle-end/68570
......
......@@ -26,7 +26,7 @@ main1 ()
s *ptr = arr;
s check_res[N];
s res[N];
unsigned char u, t, s, x, y, z, w;
unsigned char u, t, s, x, z, w;
for (i = 0; i < N; i++)
{
......
......@@ -25,7 +25,7 @@ main1 ()
s arr[N];
s *ptr = arr;
s res[N];
unsigned char u, t, s, x, y, z, w;
unsigned char u, t, s, x, z, w;
for (i = 0; i < N; i++)
{
......
......@@ -26,7 +26,7 @@ main1 (s *arr)
int i;
s *ptr = arr;
s res[N];
unsigned char u, t, s, x, y, z, w;
unsigned char u, t, s, x, z, w;
for (i = 0; i < N; i++)
{
......@@ -65,7 +65,7 @@ int main (void)
{
int i;
s arr[N];
unsigned char u, t, s, x, y, z, w;
unsigned char u, t, s, x, z, w;
check_vect ();
......
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