diff options
author | Thomas Huth <thuth@redhat.com> | 2019-05-06 06:05:42 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2019-05-09 09:37:09 +0200 |
commit | 2c8fcd8f9ef2394b9933a52c157df4ef67ca1eba (patch) | |
tree | 2f0647ac91249d15ee2bd2c5f8cff72fb0b84b23 /include | |
parent | 6faf2b6c4d70e5c3df523ee0f95c1bed95284ced (diff) |
include/exec/poison: Mark TARGET_FMT_lu as poisoned, too
We already poison TARGET_FMT_lx and TARGET_FMT_ld, but apparently
forgot to poison TARGET_FMT_lu, too. Do it now.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20190508150608.3311-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/poison.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/poison.h b/include/exec/poison.h index 1a7a57baae..b862320fa6 100644 --- a/include/exec/poison.h +++ b/include/exec/poison.h @@ -44,6 +44,7 @@ #pragma GCC poison TARGET_LONG_BITS #pragma GCC poison TARGET_FMT_lx #pragma GCC poison TARGET_FMT_ld +#pragma GCC poison TARGET_FMT_lu #pragma GCC poison TARGET_PAGE_SIZE #pragma GCC poison TARGET_PAGE_MASK |