1 /* PR middle-end/20739 */
6 /* We used to fail to compile this because gimplification dropped the
7 conversion that added the const qualifier to the sub-expression
8 involving baz, and then immediately noticed and reported its
19 extern void foo (baz_t
);
21 bar (const baz_t
* ls
)
23 foo (ls
== 0 ? *(&baz
[0]) : *ls
);