rust-lang / rustc_codegen_gcc

libgccjit AOT codegen for rustc
Apache License 2.0
908 stars 60 forks source link

Only apply NoAlias attribute if optimization is enabled #324

Closed GuillaumeGomez closed 1 year ago

GuillaumeGomez commented 1 year ago

NoAlias (and its translation into __restrict__) should only be applied if optimization is enabled (as does cg_llvm). This PR fixes that.