mirror of
https://github.com/fluencelabs/musl
synced 2025-07-31 14:21:57 +00:00
fix integer overflow in elf.h macro SHF_EXCLUDE
This commit is contained in:
@@ -319,7 +319,7 @@ typedef struct {
|
||||
#define SHF_MASKOS 0x0ff00000
|
||||
#define SHF_MASKPROC 0xf0000000
|
||||
#define SHF_ORDERED (1 << 30)
|
||||
#define SHF_EXCLUDE (1 << 31)
|
||||
#define SHF_EXCLUDE (1U << 31)
|
||||
|
||||
#define GRP_COMDAT 0x1
|
||||
|
||||
|
Reference in New Issue
Block a user