OSDN Git Service

2011-10-18 Janus Weil <janus@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / dll-8.c
1 /* { dg-do compile { target i?86-pc-cygwin } } */
2 /* { dg-do compile { target i?86-*-mingw* x86_64-*-mingw*} } */
3 /* { dg-options "-O3 -fwhole-program" } */
4 /* { dg-final { scan-assembler "foo1" } } */
5 /* { dg-final { scan-assembler-not "foo2" } } */
6 /* { dg-final { scan-assembler "doo1" } } */
7 /* { dg-final { scan-assembler-not "doo2" } } */
8
9 __declspec(dllexport) int doo1 = 2;
10 int doo2 = 3;
11 __declspec(dllexport) int foo1 (void) { return 0; }
12 int foo2 (void) { return 1; }
13 int main() { return 0; }
14