I tend to think you are right, except your stack trace is not helping me to
understand what the problem is.
Can you give a bit explanation that I can relate back to your test case?
Thx!
Sun
On Sun, Apr 29, 2012 at 12:02 AM, shenrfen wrote:
> Hi, all.
>
> I found a bug about IPA dst merge. **
Hi, all.
I found a bug about IPA dst merge.
Could you please give a review?
Thx very much.
Test case:
1.c
extern void foo(int a);
int main()
{
foo(135);
}
2.c
extern void goo(int a);
void foo(int a)
{
goo(a);
}
3.c
int goo(int a)
{
printf("a= %d\n", a);
}
Comm