소스 검색

[build] Avoid strict-aliasing warning for gcc 4.3

Signed-off-by: Bo Yang <boyang@suse.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Bo Yang 11 년 전
부모
커밋
11ad0bafbf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      src/arch/i386/include/bits/byteswap.h

+ 2
- 2
src/arch/i386/include/bits/byteswap.h 파일 보기

@@ -53,8 +53,8 @@ __bswap_variable_64 ( uint64_t x ) {
53 53
 static inline __attribute__ (( always_inline )) void
54 54
 __bswap_64s ( uint64_t *x ) {
55 55
 	struct {
56
-		uint32_t low;
57
-		uint32_t high;
56
+		uint32_t __attribute__ (( may_alias )) low;
57
+		uint32_t __attribute__ (( may_alias )) high;
58 58
 	} __attribute__ (( may_alias )) *dwords = ( ( void * ) x );
59 59
 	uint32_t discard;
60 60
 

Loading…
취소
저장