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/] [octeon-dmul-3.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* Use DMUL for widening multiplication too. */ /* { dg-options "-O -march=octeon -mgp64" } */ /* { dg-final { scan-assembler-times "\tdmul\t" 2 } } */ /* { dg-final { scan-assembler-not "\td?mult\t" } } */ /* { dg-final { scan-assembler-times "\tdext\t" 2 } } */ NOMIPS16 long long f (int i, int j) { i++; return (long long) i * j; } NOMIPS16 unsigned long long g (unsigned int i, unsigned int j) { i++; return (unsigned long long) i * j; }
Go to most recent revision | Compare with Previous | Blame | View Log