diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/compile/920529-1.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/compile/920529-1.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/compile/920529-1.c b/gcc_arm/testsuite/gcc.c-torture/compile/920529-1.c deleted file mode 100755 index 0f50309..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/compile/920529-1.c +++ /dev/null @@ -1,21 +0,0 @@ -void -f (a, b, m, n) - unsigned short *a, *b; - int m, n; -{ - unsigned long acc; - int qn; - int j; - - abort (); - - acc = a[m - 1]; - a += 0; - for (j = qn - 1; j >= 0; j = j - 1) - { - acc = (acc << 16) | a[j]; - acc = acc % *b; - } - - return; -} |