1 /* PR tree-optimization/34244 */
3 /* { dg-options "-O2 " } */
5 int __attribute__((noinline
)) GetParent(void)
19 int __attribute__((noinline
)) FindCommonAncestor(int aNode1
, int aNode2
)
21 if (aNode1
&& aNode2
) {
26 int parent
= GetParent();
34 int parent
= GetParent();
50 while (anc1
!= anc2
) {
59 extern void abort (void);
62 if (FindCommonAncestor (1, 1) != 0)