Test for reload bug with 'long long' function parameters.

Found with 2.95.2 on x86; already fixed in 2.96.
Reported by D.J. Bernstein.

From-SVN: r31555
This commit is contained in:
Zack Weinberg 2000-01-22 01:08:14 +00:00
parent 84c70deca5
commit e8736c0002

View File

@ -0,0 +1,14 @@
void big(long long u) { }
void doit(unsigned int a,unsigned int b,char *id)
{
big(*id);
big(a);
big(b);
}
int main(void)
{
doit(1,1,"\n");
return 0;
}