Closed jynik closed 3 years ago
The "Mode" entry in an ARM data abort dump will contain an additional (T) entry if the device is in Thumb mode.
(T)
This triggers an unexpected failure because the assignment expects a name, value pair, but split(' ') is looking to provide three fields in this case.
name, value
split(' ')
Fixed staged in next @ d2d4da3ea5f73b982789fec6e1604224a8ab3be7.
next
The "Mode" entry in an ARM data abort dump will contain an additional
(T)
entry if the device is in Thumb mode.This triggers an unexpected failure because the assignment expects a
name, value
pair, butsplit(' ')
is looking to provide three fields in this case.