diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gcc.target/avr/torture/pr41885.c | |
download | cbb-gcc-4.6.4-upstream.tar.bz2 cbb-gcc-4.6.4-upstream.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gcc.target/avr/torture/pr41885.c')
-rw-r--r-- | gcc/testsuite/gcc.target/avr/torture/pr41885.c | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/avr/torture/pr41885.c b/gcc/testsuite/gcc.target/avr/torture/pr41885.c new file mode 100644 index 000000000..90d001212 --- /dev/null +++ b/gcc/testsuite/gcc.target/avr/torture/pr41885.c @@ -0,0 +1,123 @@ +/* { dg-options "-w -std=c99" } */ +/* { dg-do run } */ + +#include <limits.h> +#include <stdint.h> +#include <stdlib.h> + + +uint16_t rotl_16a (uint16_t x) +{ + return (x << 8) | (x >> 8); +} +uint16_t rotl_16b (short dummy, uint16_t x) +{ + return (x << 8) | (x >> 8); +} + +uint32_t rotl_32a (uint32_t x) +{ + return (x << 8) | (x >> 24); +} +uint32_t rotl_32b (short dummy, uint32_t x) +{ + return (x << 8) | (x >> 24); +} +uint32_t rotl_32c (short dummy, uint32_t x) +{ + return (x << 16) | (x >> 16); +} +uint32_t rotl_32d (short dummy, uint32_t x) +{ + return (x << 24) | (x >> 8); +} +uint32_t rotl_32e (long dummy, uint32_t x) +{ + return (x << 24) | (x >> 8); +} + +uint64_t rotl_64 (uint64_t x) +{ + return (x << 56) | (x >> 8); +} + +uint64_t rotl_64a (short dummy, uint64_t x) +{ + return (x << 56) | (x >> 8); +} +uint64_t rotl_64b (short dummy, uint64_t x) +{ + return (x << 48) | (x >> 16); +} +uint64_t rotl_64c (short dummy, uint64_t x) +{ + return (x << 40) | (x >> 24); +} +uint64_t rotl_64d (short dummy, uint64_t x) +{ + return (x << 32) | (x >> 32); +} +uint64_t rotl_64e (short dummy, uint64_t x) +{ + return (x << 24) | (x >> 40); +} +uint64_t rotl_64f (short dummy, uint64_t x) +{ + return (x << 16) | (x >> 48); +} +uint64_t rotl_64g (short dummy, uint64_t x) +{ + return (x << 8) | (x >> 56); +} +uint64_t rotl_64h (long dummy, uint64_t x) +{ + return (x << 16) | (x >> 48); +} + + + + +int main (void) +{ + if (rotl_16a(0x1234) != 0x3412) + abort(); + if (rotl_16b(0xAA55,0x1234) != 0x3412) + abort(); + +uint32_t num32 = 0x12345678; + + if (rotl_32a(num32) != 0x34567812) + abort(); + if (rotl_32b(0xAA55,num32) != 0x34567812) + abort(); + if (rotl_32c(0xAA55,num32) != 0x56781234) + abort(); + if (rotl_32d(0xAA55,num32) != 0x78123456) + abort(); + if (rotl_32e(0x1122AA55,num32) != 0x78123456) + abort(); + +uint64_t num = 0x123456789ABCDEF0ULL; + + if (rotl_64(num) != 0xF0123456789ABCDEULL) + abort(); + if (rotl_64a(0xAA55,num) != 0xF0123456789ABCDEULL) + abort(); + if (rotl_64b(0xAA55,num) != 0xDEF0123456789ABCULL) + abort(); + if (rotl_64c(0xAA55,num) != 0xBCDEF0123456789AULL) + abort(); + if (rotl_64d(0xAA55,num) != 0x9ABCDEF012345678ULL) + abort(); + if (rotl_64e(0xAA55,num) != 0x789ABCDEF0123456ULL) + abort(); + if (rotl_64f(0xAA55,num) != 0x56789ABCDEF01234ULL) + abort(); + if (rotl_64g(0xAA55,num) != 0x3456789ABCDEF012ULL) + abort(); + if (rotl_64h(0x1122AA55,num) != 0x56789ABCDEF01234ULL) + abort(); + + exit (0); +} + |