mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 19:51:34 +08:00
fix testcase sms-7.c
From-SVN: r143587
This commit is contained in:
parent
2cd36c22d3
commit
63e505333c
@ -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,
|
||||
|
@ -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()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user