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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [builtin-bswap-3.c] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* { dg-do run } */
2
/* { dg-require-effective-target stdint_types } */
3
/* { dg-options "" } */
4
#include <stdint.h>
5
 
6
extern void abort (void);
7
 
8
int main (void)
9
{
10
  uint32_t a = 0x80000000;
11
  uint32_t b;
12
 
13
  b = __builtin_bswap32 (a);
14
  a = __builtin_bswap32 (b);
15
 
16
  if (b != 0x80 || a != 0x80000000)
17
    abort ();
18
 
19
  return 0;
20
}

powered by: WebSVN 2.1.0

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