1/* Testcase to check generation of a SH2A specific instruction for
2   'MOVRT Rn'.  */
3/* { dg-do assemble {target sh*-*-*}}  */
4/* { dg-options "-O1" }  */
5/* { dg-skip-if "" { "sh*-*-*" } "*" "-m2a -m2a-nofpu -m2a-single -m2a-single-only" }  */
6/* { dg-final { scan-assembler "movrt"} }  */
7
8int
9foo (void)
10{
11  int a, b, g, stop;
12  if (stop = ((a + b) % 2 != g))
13    ;
14  return stop;
15}
16