MIPS: Fix register mode checking for n64 in pr68273.c.
gcc/testsuite/ * gcc.target/mips/pr68273.c (dg-final): Match SImode registers only for ilp32 targets and match DImode registers for lp64 targets. From-SVN: r245874
This commit is contained in:
parent
1c98e10bc9
commit
31dcc38568
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-03-03 Toma Tabacu <toma.tabacu@imgtec.com>
|
||||
|
||||
* gcc.target/mips/pr68273.c (dg-final): Match SImode registers only for
|
||||
ilp32 targets and match DImode registers for lp64 targets.
|
||||
|
||||
2017-03-03 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* g++.dg/pr71624.C: Disable for x32.
|
||||
|
|
|
@ -75,5 +75,8 @@ op (Node q)
|
|||
}
|
||||
|
||||
|
||||
/* { dg-final { scan-rtl-dump-times "\\\(set \\\(reg:SI 5 \\\$5\\\)" 2 "expand" } } */
|
||||
/* { dg-final { scan-rtl-dump-times "\\\(set \\\(reg:SI 6 \\\$6\\\)" 1 "expand" } } */
|
||||
/* { dg-final { scan-rtl-dump-times "\\\(set \\\(reg:SI 5 \\\$5\\\)" 2 "expand" { target { ilp32 } } } } */
|
||||
/* { dg-final { scan-rtl-dump-times "\\\(set \\\(reg:SI 6 \\\$6\\\)" 1 "expand" { target { ilp32 } } } } */
|
||||
|
||||
/* { dg-final { scan-rtl-dump-times "\\\(set \\\(reg:DI 5 \\\$5\\\)" 2 "expand" { target { lp64 } } } } */
|
||||
/* { dg-final { scan-rtl-dump-times "\\\(set \\\(reg:DI 6 \\\$6\\\)" 1 "expand" { target { lp64 } } } } */
|
||||
|
|
Loading…
Add table
Reference in a new issue