OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.warn/] [inline.C] - Diff between revs 305 and 338

Only display areas with differences | Details | Blame | View Log

Rev 305 Rev 338
// { dg-do assemble  }
// { dg-do assemble  }
// { dg-options "-ansi -pedantic-errors -Winline -O1" }
// { dg-options "-ansi -pedantic-errors -Winline -O1" }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 9 Mar 2000 
// Contributed by Nathan Sidwell 9 Mar 2000 
// derived from a bug report by Benjamin Kosnik 
// derived from a bug report by Benjamin Kosnik 
// __FUNCTION__ was erroneously causing us to issue a `cannot inline'
// __FUNCTION__ was erroneously causing us to issue a `cannot inline'
// diagnostic, even though we'd (a) inlined it, (b) been forced to issue an
// diagnostic, even though we'd (a) inlined it, (b) been forced to issue an
// out of line body by taking it's address, (c) not used __FUNCTION__.
// out of line body by taking it's address, (c) not used __FUNCTION__.
inline void wibble ()
inline void wibble ()
{}
{}
inline void wobble ()
inline void wobble ()
{}                          // { dg-bogus "" } cannot inline
{}                          // { dg-bogus "" } cannot inline
void bar (void (*)());
void bar (void (*)());
void bar1 ()
void bar1 ()
{
{
  wibble ();                // can be inlined
  wibble ();                // can be inlined
  void (*ptr) () = wobble;  // force out of line issue
  void (*ptr) () = wobble;  // force out of line issue
  bar (ptr);                // make sure we make use of it
  bar (ptr);                // make sure we make use of it
}
}
struct B
struct B
{
{
  void mwibble ()
  void mwibble ()
  {}
  {}
  void mwobble ()
  void mwobble ()
  {}                        // { dg-bogus "" } cannot inline
  {}                        // { dg-bogus "" } cannot inline
  static void swibble ()
  static void swibble ()
  {}
  {}
  static void swobble ()
  static void swobble ()
  {}                        // { dg-bogus "" } cannot inline
  {}                        // { dg-bogus "" } cannot inline
};
};
void bar (void (B::*)());
void bar (void (B::*)());
void bar2 ()
void bar2 ()
{
{
  B::swibble ();                  // can be inlined
  B::swibble ();                  // can be inlined
  void (*ptr) () = &B::swobble;   // force out of line issue
  void (*ptr) () = &B::swobble;   // force out of line issue
  bar (ptr);                      // make sure we make use of it
  bar (ptr);                      // make sure we make use of it
}
}
void bar3 (B *b)
void bar3 (B *b)
{
{
  b->mwibble ();                    // can be inlined
  b->mwibble ();                    // can be inlined
  void (B::*ptr) () = &B::mwobble;  // force out of line issue
  void (B::*ptr) () = &B::mwobble;  // force out of line issue
  bar (ptr);                        // make sure we make use of it
  bar (ptr);                        // make sure we make use of it
}
}
struct C
struct C
{
{
  virtual void vwobble ()
  virtual void vwobble ()
  {}                                // { dg-bogus "" } cannot inline
  {}                                // { dg-bogus "" } cannot inline
};
};
void bar4 ()
void bar4 ()
{
{
  C c;                              // force issue of C's vtable etc
  C c;                              // force issue of C's vtable etc
}
}
 
 

powered by: WebSVN 2.1.0

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