mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-12-28 08:30:35 +00:00
32 lines
401 B
C
32 lines
401 B
C
/* { dg-do compile } */
|
|
/* { dg-do run } */
|
|
/* { dg-options "-Os" } */
|
|
|
|
unsigned int
|
|
foo (unsigned int x)
|
|
{
|
|
unsigned int r = x;
|
|
while (--x)
|
|
r *= x;
|
|
return r;
|
|
}
|
|
|
|
unsigned long long
|
|
bar (unsigned long long x)
|
|
{
|
|
unsigned long long r = x;
|
|
while (--x)
|
|
r *= x;
|
|
return r;
|
|
}
|
|
|
|
extern void abort (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (foo (5) != 120 || bar (5) != 120)
|
|
abort ();
|
|
return 0;
|
|
}
|