OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [ext/] [dllimport5.C] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
2
//  Report error if static symbol definition has dllimport attribute.
3
 
4
__attribute__((dllimport))
5
 int impvar;                    // OK,  implicit "extern"
6
 
7
 static __attribute__((dllimport))
8
 int static_impvar;     // { dg-error "external linkage" }
9
 
10
 static  __attribute__((dllexport))
11
int static_expvar;      // { dg-error "external linkage" }
12
 
13
static __attribute__((dllimport))
14
void static_impfun(void);       // { dg-error "external linkage" }
15
 
16
void foo()
17
{
18
  __attribute__((dllimport))
19
  int foovar;   // OK,  implicit "extern"
20
  foovar++;
21
}
22
 
23
void bar()
24
{
25
  __attribute__((dllexport))
26
  int barvar;   // { dg-error "external linkage" }
27
  barvar++;
28
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.