Commit 0de9dab5 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

trap-1.c, [...]: New tests.

	* gcc.target/cris/torture/trap-1.c,
	gcc.target/cris/torture/trap-2.c,
	gcc.target/cris/torture/trap-3.c,
	gcc.target/cris/torture/trap-v0.c,
	gcc.target/cris/torture/trap-v3.c: New tests.

From-SVN: r187943
parent 64f5af47
2012-05-29 Hans-Peter Nilsson <hp@axis.com>
* gcc.target/cris/torture/trap-1.c,
gcc.target/cris/torture/trap-2.c,
gcc.target/cris/torture/trap-3.c,
gcc.target/cris/torture/trap-v0.c,
gcc.target/cris/torture/trap-v3.c: New tests.
2012-05-28 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/25137
......
/* Check that "break 8" defaults according to CPU version. */
/* { dg-do compile } */
/* { dg-skip-if "" { "*-*-*" } { "-march*" } { "" } } */
/* { dg-final { scan-assembler "break 8" { target { ! cris-*-elf } } } } */
/* { dg-final { scan-assembler-not "bsr" { target { ! cris-*-elf } } } } */
/* { dg-final { scan-assembler-not "jsr" { target { ! cris-*-elf } } } } */
/* { dg-final { scan-assembler-not "break\[ \t\]" { target cris-*-elf } } } */
/* { dg-final { scan-assembler "\[jb\]sr \[_\]\?abort" { target cris-*-elf } } } */
void do_trap (void)
{
__builtin_trap ();
}
/* As trap-1.c but forcing on. */
/* { dg-do compile } */
/* { dg-options "-mtrap-using-break8" } */
/* { dg-final { scan-assembler "break 8" } } */
/* { dg-final { scan-assembler-not "bsr" } } */
/* { dg-final { scan-assembler-not "jsr" } } */
void do_trap (void)
{
__builtin_trap ();
}
/* Like trap-1.c and trap-2.c but force calls to abort. */
/* { dg-do compile } */
/* { dg-options "-mno-trap-using-break8" } */
/* { dg-final { scan-assembler-not "break\[ \t\]" } } */
/* { dg-final { scan-assembler "\[jb\]sr \[_\]\?abort" } } */
void do_trap (void)
{
__builtin_trap ();
}
/* As trap-1.c but with CPU version specified, excluding. */
/* { dg-do compile } */
/* { dg-skip-if "" { "*-*-*" } { "-march=*" } { "" } } */
/* { dg-options "-march=v0" } */
/* { dg-final { scan-assembler-not "break\[ \t\]" } } */
/* { dg-final { scan-assembler "\[jb\]sr \[_\]\?abort" } } */
void do_trap (void)
{
__builtin_trap ();
}
/* As trap-1.c but with CPU version specified, including. */
/* { dg-do compile } */
/* { dg-skip-if "" { "*-*-*" } { "-march=*" } { "" } } */
/* { dg-options "-march=v3" } */
/* { dg-final { scan-assembler "break 8" } } */
/* { dg-final { scan-assembler-not "bsr" } } */
/* { dg-final { scan-assembler-not "jsr" } } */
void do_trap (void)
{
__builtin_trap ();
}
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