diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/andok.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/andok.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/andok.c b/gcc/testsuite/gcc.c-torture/compile/andok.c new file mode 100644 index 0000000..d55bd01 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/andok.c @@ -0,0 +1,6 @@ +foo (a, b, p) + int *p; +{ + p[1] = a & 0xfff0000; + p[2] = b & 0xfff0000; +} |