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-5.C] - Blame information for rev 301

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 301 jeremybenn
// { dg-do compile }
2
struct f
3
{
4
  inline f(void);
5
  inline void f1(void);
6
  int a;
7
};
8
 
9
inline __attribute__((always_inline))  f::f(void)
10
{
11
  a++;
12
}
13
 
14
inline __attribute__((always_inline)) void  f::f1(void)
15
{
16
  a++;
17
}
18
 
19
void g(void)
20
{
21
  f a, b, c, d;
22
  a.f1();
23
}
24
 
25
// f::f() should be inlined even at -O0
26
// { dg-final { scan-assembler-not "_ZN1fC1Ev" } }
27
// Likewise for f::f1()
28
// { dg-final { scan-assembler-not "_ZN1f2f1Ev" } }

powered by: WebSVN 2.1.0

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