Commit 3353ebf0 by Dorit Nuzman Committed by Dorit Nuzman

* gcc.dg/vect/vect-reduc-1char.c: Fix data to fit in char.

From-SVN: r102488
parent 5bb1823d
2005-07-28 Dorit Nuzman <dorit@il.ibm.com>
* gcc.dg/vect/vect-reduc-1char.c: Fix data to fit in char.
2005-07-28 Dorit Nuzman <dorit@il.ibm.com>
PR tree-optimization/22506
* gcc.dg/vect/ps22506.c: New test.
......
......@@ -4,13 +4,13 @@
#include "tree-vect.h"
#define N 16
#define DIFF 242
#define DIFF 122
void
main1 (unsigned char x, unsigned char max_result, unsigned char min_result)
{
int i;
unsigned char ub[N] = {1,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
unsigned char ub[N] = {1,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};
unsigned char uc[N] = {1,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
unsigned char udiff = 2;
unsigned char umax = x;
......
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