Commit b9235176 by Richard Henderson

Test for PR 15289.

From-SVN: r91572
parent 1466e387
/* PR rtl-opt/15289 */
typedef struct { _Complex char a; _Complex char b; } Scc2;
Scc2 s = { 1+2i, 3+4i };
int checkScc2 (Scc2 s)
{
return s.a != 1+2i || s.b != 3+4i;
}
int main (void)
{
return checkScc2 (s);
}
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