2011-10-07 Ralf Corsépius <ralf.corsepius@rtems.org>

* new-exceptions/bspsupport/ppc_exc_prologue.c
	(ppc_exc_create_branch_op): Comment out unused var "BRANCH_OP_LINK".
This commit is contained in:
Ralf Corsepius
2011-10-07 09:18:24 +00:00
parent c6d8f9970e
commit c3178737d0
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
2011-10-07 Ralf Corsépius <ralf.corsepius@rtems.org>
* new-exceptions/bspsupport/ppc_exc_prologue.c
(ppc_exc_create_branch_op): Comment out unused var "BRANCH_OP_LINK".
* mpc5xx/clock/clock.c: Make BSP_disconnect_clock_handler decl a
prototype.

View File

@@ -70,7 +70,7 @@ static bool ppc_exc_create_branch_op(
)
{
static const uintptr_t BRANCH_OP_CODE = 18 << 26;
static const uintptr_t BRANCH_OP_LINK = 0x1;
/* static const uintptr_t BRANCH_OP_LINK = 0x1; */
static const uintptr_t BRANCH_OP_ABS = 0x2;
static const uintptr_t BRANCH_OP_MSK = 0x3ffffff;
size_t branch_op_index = prologue_size / 4 - 1;