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/] [eh/] [alias1.C] - Rev 301

Compare with Previous | Blame | View Log

// { dg-do run }
// { dg-options "-O3" }
/* PR c++/28139: disjoint alias sets for the store from
   expand_start_catch_block than for loading P result in P being loaded
   before it is initialized for sh-elf.  */

extern "C" {
void exit (int) __attribute__ ((noreturn));
}

int i_glob = 42;
int *p0 = &i_glob;
typedef int **ipp;

void
g (int i)
{
  if (!i_glob)
    exit ((__SIZE_TYPE__) & i);
}

static void
h ()
{
  throw &p0;
}

int
main()
{
  g (42);
  try
    {
     h ();
    }
  catch (const ipp &p)
    {
      if (**p != 42)
        exit (1);
    }
  return 0;
}

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.