test: Add a simple test to detected warnings with uint64_t, uintptr_tThese types are problematic because they are typically declared in anon-standard way in U-Boot. For example, U-Boot uses 'long
test: Add a simple test to detected warnings with uint64_t, uintptr_tThese types are problematic because they are typically declared in anon-standard way in U-Boot. For example, U-Boot uses 'long long' forint64_t even on a 64-bit machine whereas stdint.h uses 'long'.Similarly, U-Boot always uses 'long' for intptr_t whereas stdint.h mostlyuses 'int'.This simple test script runs a few toolchains on a few archs to check forwarnings.Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...