[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2009-06-01-addrofknr.c
blob905c696721ca72751a8298797279d2bb99389875
1 // RUN: %clang_cc1 %s -o %t -emit-llvm -verify -std=c89
2 // PR4289
4 struct funcptr {
5 int (*func)();
6 };
8 static int func(f) // expected-warning {{a function definition without a prototype is deprecated in all versions of C and is not supported in C2x}}
9 void *f;
11 return 0;
14 int
15 main(int argc, char *argv[])
17 struct funcptr fp;
19 fp.func = &func;
20 fp.func = func;