Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -o %t
      2 typedef struct a b;
      3 
      4 b* x;
      5 
      6 struct a {
      7   b* p;
      8 };
      9 
     10 void f() {
     11   b* z = x->p;
     12 }
     13