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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [tm/] [pr46941.C] - Rev 717

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

// { dg-do "compile" }
// { dg-options "-fgnu-tm" }

class Obj
{
  int dummy;
};

__attribute__((transaction_safe))
Obj* allocate()
{
  return new Obj;
}

__attribute__((transaction_safe))
void deallocate(Obj * o)
{
  delete o;
}

__attribute__((transaction_safe))
Obj* allocatearray()
{
  return new Obj[2];
}

__attribute__((transaction_safe))
void deallocatearray(Obj *o[])
{
  delete [] o;
}

/* The delete/new operators are handled by the libitm runtime.  */
/* { dg-final { scan-assembler "_ZGTtnw\[mj\]" } } */
/* { dg-final { scan-assembler "_ZGTtna\[mj\]" } } */
/* { dg-final { scan-assembler "_ZGTtdlPv" } } */
/* { dg-final { scan-assembler "_ZGTtdaPv" } } */

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.