URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [msub-5.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "-O2 -march=5kc" } */ /* { dg-final { scan-assembler-times "\tmsub\t" 4 } } */ /* { dg-final { scan-assembler-not "\tmtlo\t" } } */ /* { dg-final { scan-assembler-times "\tmflo\t" 3 } } */ NOMIPS16 void f1 (int *a) { a[0] = a[0] * a[1] - a[2] * a[3]; } NOMIPS16 void f2 (int *a) { a[0] = a[0] * a[1] - a[2] * a[3] - a[4]; } NOMIPS16 void f3 (int *a) { a[0] = a[0] * a[1] - a[2] * a[3] - a[4] * a[5]; }
Go to most recent revision | Compare with Previous | Blame | View Log