diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-02-10 14:41:29 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-02-10 14:48:56 +0000 |
commit | 94b39fbe9298160b034c93ca06deb39a907e3b3f (patch) | |
tree | 2dfc041ae6f3dac2f3444cd6efed768b25b17e17 /src/include/ipxe/gcm.h | |
parent | 0f5abd8b117ea7da0747fe36b66c050706f6584f (diff) | |
download | ipxe-centos7.tar.gz |
[build] Fix build failures with older versions of gcccentos7
Some versions of gcc (observed with gcc 4.8.5 in CentOS 7) will report
spurious build_assert() failures for some assertions about structure
layouts. There is no clear pattern as to what causes these spurious
failures, and the build assertion does succeed in that no unresolvable
symbol reference is generated in the compiled code.
Adjust the assertions to work around these apparent compiler issues.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/gcm.h')
-rw-r--r-- | src/include/ipxe/gcm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/ipxe/gcm.h b/src/include/ipxe/gcm.h index 9653a0a1a..4864445d2 100644 --- a/src/include/ipxe/gcm.h +++ b/src/include/ipxe/gcm.h @@ -89,7 +89,8 @@ static int _gcm_name ## _setkey ( void *ctx, const void *key, \ size_t keylen ) { \ struct _gcm_name ## _context *context = ctx; \ build_assert ( _blocksize == sizeof ( context->gcm.key ) ); \ - build_assert ( ( ( void * ) &context->gcm ) == ctx ); \ + build_assert ( ( ( void * ) &context->gcm ) == \ + ( ( void * ) context ) ); \ build_assert ( ( ( void * ) &context->raw ) == \ ( ( void * ) context->gcm.raw_ctx ) ); \ return gcm_setkey ( &context->gcm, key, keylen, &_raw_cipher ); \ |