URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [msub-7.c] - Rev 324
Go to most recent revision | Compare with Previous | Blame | View Log
/* -mlong32 added because of PR target/38598. */ /* { dg-options "-O2 -march=5kc -mlong32" } */ /* { dg-final { scan-assembler-not "\tmul\t" } } */ /* { dg-final { scan-assembler "\tmsub\t" } } */ NOMIPS16 int f1 (int *a, int *b, int n) { int x, i; x = 100; for (i = 0; i < n; i++) x -= a[i] * b[i]; return x; }
Go to most recent revision | Compare with Previous | Blame | View Log