Commit 4456f65d by Chenghua Xu Committed by Chenghua Xu

div-9.c: Delete duplicate test.

2017-06-05  Chenghua Xu  <paul.hua.gm@gmail.com>

	* gcc.target/mips/div-9.c: Delete duplicate test.
	* gcc.target/mips/div-10.c: Ditto.
	* gcc.target/mips/div-11.c: Ditto.
	* gcc.target/mips/div-12.c: Ditto.

From-SVN: r248868
parent 36575b70
2017-06-05 Chenghua Xu <paul.hua.gm@gmail.com>
* gcc.target/mips/div-9.c: Delete duplicate test.
* gcc.target/mips/div-10.c: Ditto.
* gcc.target/mips/div-11.c: Ditto.
* gcc.target/mips/div-12.c: Ditto.
2017-05-23 Jan Hubicka <hubicka@ucw.cz>
* gcc.dg/tree-ssa/attr-hotcold-2.c: Update template.
......
/* { dg-options "-mgp64 (-mips16)" } */
/* { dg-final { scan-assembler "\tdivu\t" } } */
/* { dg-final { scan-assembler "\tmflo\t" } } */
/* { dg-final { scan-assembler-not "\tmfhi\t" } } */
typedef unsigned int SI __attribute__((mode(SI)));
MIPS16 SI
f (SI x, SI y)
{
return x / y;
}
/* { dg-options "-mgp64 (-mips16)" } */
/* { dg-final { scan-assembler "\tdiv\t" } } */
/* { dg-final { scan-assembler-not "\tmflo\t" } } */
/* { dg-final { scan-assembler "\tmfhi\t" } } */
typedef int SI __attribute__((mode(SI)));
MIPS16 SI
f (SI x, SI y)
{
return x % y;
}
/* { dg-options "-mgp64 (-mips16)" } */
/* { dg-final { scan-assembler "\tdivu\t" } } */
/* { dg-final { scan-assembler-not "\tmflo\t" } } */
/* { dg-final { scan-assembler "\tmfhi\t" } } */
typedef unsigned int SI __attribute__((mode(SI)));
MIPS16 SI
f (SI x, SI y)
{
return x % y;
}
/* { dg-options "-mgp64 (-mips16)" } */
/* { dg-final { scan-assembler "\tdiv\t" } } */
/* { dg-final { scan-assembler "\tmflo\t" } } */
/* { dg-final { scan-assembler-not "\tmfhi\t" } } */
typedef int SI __attribute__((mode(SI)));
MIPS16 SI
f (SI x, SI y)
{
return x / y;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment