Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s | FileCheck %s
      2 // CHECK: ModuleID
      3 // CHECK-NOT: opaque
      4 // CHECK: define void @f0
      5 
      6 enum teste1 test1f(void), (*test1)(void) = test1f;
      7 struct tests2 test2f(), (*test2)() = test2f;
      8 struct tests3;
      9 void test3f(struct tests3), (*test3)(struct tests3) = test3f;
     10 enum teste1 { TEST1 };
     11 struct tests2 { int x,y,z,a,b,c,d,e,f,g; };
     12 struct tests3 { float x; };
     13 
     14 void f0() {}
     15