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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.bugs/] [900520_02.C] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// { dg-do assemble  }
// { dg-do assemble  }
// g++ 1.37.1 bug 900520_02
// g++ 1.37.1 bug 900520_02
// keywords: reference types, initialization, parameter passing
// keywords: reference types, initialization, parameter passing
typedef int b_array[3];
typedef int b_array[3];
typedef int u_array[];
typedef int u_array[];
typedef b_array &b_array_ref;
typedef b_array &b_array_ref;
typedef u_array &u_array_ref;
typedef u_array &u_array_ref;
void take_b_array_ref (b_array_ref arg) { } // { dg-error "" } passed to here
void take_b_array_ref (b_array_ref arg) { } // { dg-error "" } passed to here
extern u_array u_array_gbl_obj;
extern u_array u_array_gbl_obj;
u_array_ref u_array_ref_gbl_obj0 = u_array_gbl_obj;
u_array_ref u_array_ref_gbl_obj0 = u_array_gbl_obj;
b_array_ref b_array_ref_gbl_obj0 = u_array_ref_gbl_obj0; // { dg-error "" } invalid declaration
b_array_ref b_array_ref_gbl_obj0 = u_array_ref_gbl_obj0; // { dg-error "" } invalid declaration
void test_passing ()
void test_passing ()
{
{
  take_b_array_ref (u_array_ref_gbl_obj0); // { dg-error "" } invalid call
  take_b_array_ref (u_array_ref_gbl_obj0); // { dg-error "" } invalid call
}
}
b_array u_array_gbl_obj;
b_array u_array_gbl_obj;
int main () { return 0; }
int main () { return 0; }
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.