16 lines · c
1// RUN: %clang_cc1 -triple x86_64-apple-darwin -Wno-strict-prototypes -emit-llvm -o - %s | FileCheck %s2// CHECK: ModuleID3// CHECK: target triple = "4// CHECK-NOT: opaque5// CHECK-LABEL: define{{.*}} void @f06 7enum teste1 test1f(void), (*test1)(void) = test1f;8struct tests2 test2f(), (*test2)() = test2f;9struct tests3;10void test3f(struct tests3), (*test3)(struct tests3) = test3f;11enum teste1 { TEST1 };12struct tests2 { int x,y,z,a,b,c,d,e,f,g; };13struct tests3 { float x; };14 15void f0(void) {}16