commit | 44fce26c10eb598b5117665a1d36db1d1b14476f | [log] [tgz] |
---|---|---|
author | Alan Modra <amodra@gmail.com> | Mon Jun 09 15:00:30 2025 +0930 |
committer | Alan Modra <amodra@gmail.com> | Wed Jun 11 07:45:18 2025 +0930 |
tree | 5ae8dd9c2a6dd9a8202c3897dd88034a4998f749 | |
parent | 9f8e772be472f457f19f06be10e1309568067a09 [diff] |
gas md_apply_fix bad casts ns32k and z8k cast a valueT pointer to a long pointer when loading md_apply_fix's value. That's quite wrong if the types have different sizes, as they may eg. on a 32-bit host with 64-bit bfd support. sparc also loads the value via a cast pointer, but at least in that case the cast is to the same size pointer. None of these casts are needed. Get rid of them.