Remove dead code.
Change-Id: Ic90598b3dd4128dabb18ac4dc1285ca721a6a441
This commit is contained in:
parent
6f9585068f
commit
7f368468c8
|
@ -142,10 +142,6 @@ typedef struct {
|
||||||
unsigned datacount;
|
unsigned datacount;
|
||||||
/* Number of words in the Program Buffer. */
|
/* Number of words in the Program Buffer. */
|
||||||
unsigned progbufsize;
|
unsigned progbufsize;
|
||||||
/* The value that mstatus actually has on the target right now. This is not
|
|
||||||
* the value we present to the user. That one may be stored in the
|
|
||||||
* reg_cache. */
|
|
||||||
uint64_t mstatus_actual;
|
|
||||||
|
|
||||||
yes_no_maybe_t progbuf_writable;
|
yes_no_maybe_t progbuf_writable;
|
||||||
/* We only need the address so that we know the alignment of the buffer. */
|
/* We only need the address so that we know the alignment of the buffer. */
|
||||||
|
@ -1875,8 +1871,6 @@ static int riscv013_get_register(struct target *target,
|
||||||
|
|
||||||
riscv_set_current_hartid(target, hid);
|
riscv_set_current_hartid(target, hid);
|
||||||
|
|
||||||
riscv013_info_t *info = get_info(target);
|
|
||||||
|
|
||||||
int result = ERROR_OK;
|
int result = ERROR_OK;
|
||||||
if (rid <= GDB_REGNO_XPR31) {
|
if (rid <= GDB_REGNO_XPR31) {
|
||||||
result = register_read_direct(target, value, rid);
|
result = register_read_direct(target, value, rid);
|
||||||
|
@ -1893,9 +1887,6 @@ static int riscv013_get_register(struct target *target,
|
||||||
LOG_ERROR("Unable to read register %d", rid);
|
LOG_ERROR("Unable to read register %d", rid);
|
||||||
*value = -1;
|
*value = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rid == GDB_REGNO_MSTATUS)
|
|
||||||
info->mstatus_actual = *value;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in New Issue