File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.20 )
22project (epass VERSION 0.2.0 LANGUAGES C )
33set (CMAKE_C_FLAGS
4- "${CMAKE_C_FLAGS} -Werror -Wunused-function -Wstrict-prototypes -Wenum-compare -Wunused-variable -Wunused-but-set-variable -Wsign-compare -O3 "
4+ "${CMAKE_C_FLAGS} -Werror -Wunused-function -Wstrict-prototypes -Wenum-compare -Wunused-variable -Wunused-but-set-variable -Wsign-compare -O2 -fstack-protector-strong -fno-omit-frame-pointer -fno-strict-aliasing -std=gnu11 "
55)
66
77set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
Original file line number Diff line number Diff line change @@ -1124,11 +1124,10 @@ struct ir_value bpf_ir_value_stack_ptr(struct ir_function *fun);
11241124
11251125struct ir_value bpf_ir_value_r0 (struct ir_function * fun );
11261126
1127- #define VR_POS_STACK_PTR \
1128- (struct ir_vr_pos) \
1129- { \
1130- .allocated = true, .alloc_reg = BPF_REG_10, .spilled = 0 \
1131- }
1127+ #define VR_POS_STACK_PTR \
1128+ (struct ir_vr_pos){ .allocated = true, \
1129+ .alloc_reg = BPF_REG_10, \
1130+ .spilled = 0 }
11321131
11331132struct ir_value bpf_ir_value_norm_stack_ptr (void );
11341133
You can’t perform that action at this time.
0 commit comments