aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/asm-function-5.C
blob: f04eb4eed190f0db8ae7491fa367b965f40aa31a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* APPLE LOCAL file CW asm blocks */
/* Test function calls in asm functions.  */

/* { dg-do run { target powerpc*-*-darwin* } } */
/* { dg-options "-fasm-blocks -O2" } */

void function_with_asm_stmts () {
  asm ("nop");
  asm volatile ("nop");
  __asm__ ("nop");
  __asm__ __volatile__ ("nop");
}

extern "C" void abort (void);

int glob = 0;

int other ();
extern "C" int stubfn ();
int localfn () { return other (); }

asm void foo(int arg)
{
  nofralloc
  mflr r0
  stmw r30,(-8)(r1)
  stw r0,8(r1)
  stwu r1,(-80)(r1)
  bl stubfn
  addi r1,r1,80
  lwz r0,8(r1)
  lmw r30,(-8)(r1)
  mtlr r0
  b localfn
}

void bar (int arg)
{
  stubfn ();
  localfn ();
}

int stubfn () { return other(); }

int other () { return ++glob; }

int main ()
{
  bar(34);
  foo(92);
  if (glob != 4)
    abort ();
  return 0;
}