mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2025-02-22 02:28:59 +00:00
17 lines
308 B
C
17 lines
308 B
C
/* { dg-do run } */
|
|
/* { dg-options "-O" } */
|
|
int
|
|
main (void)
|
|
{
|
|
/* Test constant folding. */
|
|
extern void link_error (void);
|
|
|
|
if (__builtin_bswap32(0xaabbccdd) != 0xddccbbaa)
|
|
link_error ();
|
|
|
|
if (__builtin_bswap64(0x1122334455667788ULL) != 0x8877665544332211ULL)
|
|
link_error ();
|
|
|
|
return 0;
|
|
}
|