Commit e8736c00 by Zack Weinberg

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
parent 84c70dec
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;
}
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