Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
8b160d50
Commit
8b160d50
authored
Jun 13, 2011
by
Edmar Wienskoski
Committed by
David Edelsohn
Jun 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.target/powerpc/outofline_rnreg.c: New testcase.
From-SVN: r174995
parent
317a0646
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.target/powerpc/outofline_rnreg.c
+15
-0
No files found.
gcc/testsuite/ChangeLog
View file @
8b160d50
2011-06-13 Edmar Wienskoski <edmar@freescale.com>
* gcc.target/powerpc/outofline_rnreg.c: New testcase.
2011-06-13 H.J. Lu <hongjiu.lu@intel.com>
* gcc.dg/h8300-bit-insn-ice2.c: Remove duplicated lines.
...
...
gcc/testsuite/gcc.target/powerpc/outofline_rnreg.c
0 → 100644
View file @
8b160d50
/* Test that registers used by out of line restore functions does not get renamed.
AIX, and 64 bit targets uses r1, which rnreg stays away from.
Linux 32 bits targets uses r11, which is susceptible to be renamed */
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-Os -frename-registers -fdump-rtl-rnreg" } */
/* "* renamed" or "* no available better choice" results are not acceptable */
/* { dg-final { scan-rtl-dump-not "Register 11 in insn *" "rnreg" { target powerpc*-*-linux* } } } */
/* { dg-final { cleanup-rtl-dump "rnreg" } } */
int
calc
(
int
j
)
{
if
(
j
<=
1
)
return
1
;
return
calc
(
j
-
1
)
*
(
j
+
1
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment