Beispiel #1
0
/* On some systems, such as AIX, unreferenced variables are deleted
   from the executable.  On other compilers, such as ARM RealView,
   const variables without their address taken are deleted.  */
void usestatics1 ()
{
  void useit1 (const int *val);
  
  useit1 (&filelocal);
  useit1 (&filelocal_bss);
  useit1 (&filelocal_ro);
}
Beispiel #2
0
/* On some systems, such as AIX, unreferenced variables are deleted
   from the executable.  */
void usestatics1 ()
{
  void useit1 (int val);
  
  useit1 (filelocal);
  useit1 (filelocal_bss);
  useit1 (filelocal_ro);
}
Beispiel #3
0
/* On some systems, such as AIX, unreferenced variables are deleted
   from the executable.  */
usestatics1 ()
{
  useit1 (filelocal);
  useit1 (filelocal_bss);
  useit1 (filelocal_ro);
}