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
4230d0fe
Commit
4230d0fe
authored
Aug 12, 2008
by
Ulrich Weigand
Committed by
Ulrich Weigand
Aug 12, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/spu/spu.c (spu_safe_dma): Respect TARGET_SAFE_DMA.
From-SVN: r139011
parent
359e19d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/config/spu/spu.c
+1
-1
No files found.
gcc/ChangeLog
View file @
4230d0fe
2008
-
08
-
12
Ulrich
Weigand
<
Ulrich
.
Weigand
@de
.
ibm
.
com
>
2008
-
08
-
12
Ulrich
Weigand
<
Ulrich
.
Weigand
@de
.
ibm
.
com
>
*
config
/
spu
/
spu
.
c
(
spu_safe_dma
)
:
Respect
TARGET_SAFE_DMA
.
2008
-
08
-
12
Ulrich
Weigand
<
Ulrich
.
Weigand
@de
.
ibm
.
com
>
*
config
/
spu
/
spu
.
h
(
DWARF_FRAME_RETURN_COLUMN
)
:
Define
.
*
config
/
spu
/
spu
.
h
(
DWARF_FRAME_RETURN_COLUMN
)
:
Define
.
2008
-
08
-
12
Jakub
Jelinek
<
jakub
@redhat
.
com
>
2008
-
08
-
12
Jakub
Jelinek
<
jakub
@redhat
.
com
>
...
...
gcc/config/spu/spu.c
View file @
4230d0fe
...
@@ -4565,7 +4565,7 @@ spu_restore_stack_block (rtx op0 ATTRIBUTE_UNUSED, rtx op1)
...
@@ -4565,7 +4565,7 @@ spu_restore_stack_block (rtx op0 ATTRIBUTE_UNUSED, rtx op1)
int
int
spu_safe_dma
(
HOST_WIDE_INT
channel
)
spu_safe_dma
(
HOST_WIDE_INT
channel
)
{
{
return
(
channel
>=
21
&&
channel
<=
27
)
;
return
TARGET_SAFE_DMA
&&
channel
>=
21
&&
channel
<=
27
;
}
}
void
void
...
...
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