diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/20020103-1.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/20020103-1.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020103-1.c b/gcc/testsuite/gcc.c-torture/execute/20020103-1.c new file mode 100644 index 000000000..c010aeaad --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/execute/20020103-1.c @@ -0,0 +1,28 @@ +/* On h8300 port, the following used to be broken with -mh or -ms. */ + +extern void abort (void); +extern void exit (int); + +unsigned long +foo (unsigned long a) +{ + return a ^ 0x0000ffff; +} + +unsigned long +bar (unsigned long a) +{ + return a ^ 0xffff0000; +} + +int +main () +{ + if (foo (0) != 0x0000ffff) + abort (); + + if (bar (0) != 0xffff0000) + abort (); + + exit (0); +} |