diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/86.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/86.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/86.c b/gcc/testsuite/gcc.c-torture/compile/86.c new file mode 100644 index 0000000..deea85e --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/86.c @@ -0,0 +1,19 @@ +m32 (a) + int *a; +{ + a[1] = a[0]; +} + +m16 (a) + short *a; +{ + a[1] = a[0]; +} + + +m8 (a) + char *a; +{ + a[1] = a[0]; +} + |