asm-function-5.C   [plain text]


/* APPLE LOCAL file CW asm blocks */
/* Test function calls in asm functions.  */

/* { dg-do run } */
/* { dg-options "-fasm-blocks" } */

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

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 L_stubfn$stub
  lwz r0,88(r1)
  addi r1,r1,80
  mtlr r0
  lmw r30,-8(r1)
  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;
}