This patch looks fine to me.
2010/10/5 Min Zhao
> Hi,
>
> Would a gatekeeper please review the change for bug664?
> https://bugs.open64.net/show_bug.cgi?id=664
>
> Here is the failing testcase:
>
> struct st1{
> int *a;
> int b;
> };
>
> int main()
> {
> struct st1 myst;
> myst.b = 10;
> int
Hi,
Would a gatekeeper please review the change for bug664?
https://bugs.open64.net/show_bug.cgi?id=664
Here is the failing testcase:
struct st1{
int *a;
int b;
};
int main()
{
struct st1 myst;
myst.b = 10;
int k;
k = (0, myst).b;
printf("%d\n", k);
}
We are generating incorrect IR for c