fix testcase sms-7.c

From-SVN: r143587
This commit is contained in:
Revital Eres 2009-01-23 10:34:44 +00:00 committed by Revital Eres
parent 2cd36c22d3
commit 63e505333c
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-01-23 Revital Eres <eres@il.ibm.com>
* gcc.dg/sms-7.c: Fix test.
2009-01-22 Adam Nemet <anemet@caviumnetworks.com>
* gcc.dg/bitfld-15.c, gcc.dg/bitfld-16.c,

View File

@ -3,7 +3,7 @@
extern void abort (void);
void foo (int *a, short * __restrict__ b, short * __restrict__ c)
void foo (int * __restrict__ a, int * __restrict__ b, short * c)
{
int i;
for(i = 0; i < 100; i+=4)
@ -15,8 +15,8 @@ void foo (int *a, short * __restrict__ b, short * __restrict__ c)
}
}
int a[100];
short b[100], c[100];
int a[100], b[100];
short c[100];
int main()
{