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