Commit 4230d0fe by Ulrich Weigand Committed by Ulrich Weigand

* config/spu/spu.c (spu_safe_dma): Respect TARGET_SAFE_DMA.

From-SVN: r139011
parent 359e19d5
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>
......
...@@ -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
......
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