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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [builtin-bswap-2.c] - Rev 689

Compare with Previous | Blame | View Log

/* { dg-do run } */
/* { dg-require-effective-target stdint_types } */
/* { dg-options "" } */
#include <stdint.h>
 
extern void abort (void);
 
int main (void)
{
  uint32_t a = 4;
  uint32_t b;
 
  b = __builtin_bswap32 (a);
  a = __builtin_bswap32 (b);
 
  if (b == 4 || a != 4)
    abort ();
 
  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.