Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
      2 
      3    struct fu;
      4    void foo(struct fu);
      5    void bar() {
      6       foo;
      7    }
      8