1 /* PR tree-optimization/83593 */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fnon-call-exceptions -fno-tree-pre -fexceptions -fno-code-hoisting -fno-tree-fre" } */
3 
4 void
hr(int * ed,signed char * ju)5 hr (int *ed, signed char *ju)
6 {
7   int kc;
8     {
9       int xj;
10       int *q2 = (*ed == 0) ? &xj : &kc;
11 
12       *ju = 0;
13       kc = *ju;
14     }
15 }
16