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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.jason/] [temporary8.C] - Rev 699

Compare with Previous | Blame | View Log

// { dg-do run  }
// Test for proper handling of temporaries in ?: exprs.

extern "C" int printf (const char *, ...);
int c = 0, d = 0;

class A {
public:
  A() { ++c; }
  A(const A&) { ++c; }
  ~A() { ++d; }
};

A f (const A& a)
{
  return (c ? A() : A());
}

int main()
{
  {
    f (c ? A() : A());
  }
  printf ("%d %d\n", c, d);
  return c != d || c != 2;
}

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.