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/] [ext/] [alias-canon.C] - Rev 328

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

// PR c++/34935
/* { dg-do compile } */
/* { dg-final { scan-assembler "_Z1fi" } } */
/* { dg-final { scan-assembler "_Z1fb" } } */
/* { dg-final { scan-assembler "_Z1fd" } } */
/* { dg-final { scan-assembler "_Z1ff" } } */
/* { dg-final { scan-assembler "_Z1fw" } } */

typedef int INT __attribute((may_alias));

void f(int);
void f(INT) { }

typedef bool BOOL __attribute((may_alias));

void f(bool);
void f(BOOL) { }

typedef float FLOAT __attribute((may_alias));

void f(float);
void f(FLOAT) { }

typedef double DOUBLE __attribute((may_alias));

void f(double);
void f(DOUBLE) {}

typedef wchar_t WCHAR_T __attribute((may_alias));

void f(wchar_t);
void f(WCHAR_T) {}

void test()
{
  f(0);
  f(true);
  f(1.0f);
  f(1.0);
  f(L'f');
}

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.