commit | e144cafe43c8298bd41c044329857c3068cd845b | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sat Oct 03 11:31:27 2020 -0600 |
committer | Simon Glass <sjg@chromium.org> | Thu Oct 29 14:42:17 2020 -0600 |
tree | 0c671dc9826b0ca6569294c438597fcc89f78039 | |
parent | abb9cd30b23858125ce015c1dffdae4d7895bae8 [diff] |
dtoc: Fix widening of int to bytes At present an integer is converted to bytes incorrectly. The whole 32-bit integer is inserted as the first element of the byte array, and the other three bytes are skipped. This was not noticed because the unit test did not check it, and the functional test was checking for wrong values. Update the code to handle this as a special case. Add one more test to cover all code paths. Signed-off-by: Simon Glass <sjg@chromium.org>