>> + /* By default, when -mno-vector-strict-align is not specified, do not >> allow >> + unaligned vector memory accesses except if -mtune's setting explicitly >> + allows it. */ >> + riscv_vector_unaligned_access_p = rvv_vector_strict_align == 0 || > > opts->x_rvv_vector_strict_align rather than rvv_vector_strict_align, > rvv_vector_strict_align is alias of global_options.x_rvv_vector_strict_align
Ah, yes, good catch. And the line break after || was also wrong. Corrected it locally and will wait for further comments. Regards Robin