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/] [gcc.dg/] [vmx/] [x-02.c] - Rev 298

Compare with Previous | Blame | View Log

#include <altivec.h>
 
static vector bool char
g(vector unsigned char, vector bool char);
 
static int q(void);
 
static vector bool char
f(vector bool char b, vector unsigned char d) 
{
  vector bool char *p = &b;
  *p = g(d,b);
  return q() ? *p : b;
}
 
static vector bool char b8;
static vector unsigned char u8;
 
static vector bool char
g(vector unsigned char a, vector bool char b)
{
  return b8;
}
 
static int q ()
{
  return 1;
}
 
int main() 
{ 
  f(b8, u8);
  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.