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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [ext/] [always_inline-2.C] - Rev 328

Go to most recent revision | Compare with Previous | Blame | View Log

// { dg-options "-O0" }
// { dg-do compile }
// PR C++/34715


namespace X
{
 template <class T>
 const T& min123(const T& a, const T& b);
}


template <class T>
inline __attribute__ ((always_inline)) const T& X::min123(const T& a, const T& b)
{
 return a < b ? a : b;
}
int main()
{
 int a, b;
 return X::min123(a, b);
}



// { dg-final { scan-assembler-not "min123" } }

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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