If a function can be redefined, thus if it doesn't have an "exact" definition, we should not derive no-recurse from the body, though, we do: Before: define linkonce_odr i32 @leaf_redefinable() { ret i32 1 } After -functionattrs: ; Function Attrs: norecurse define linkonce_odr i32 @leaf_redefinable() #6 { ret i32 1 }
if function definition is not exact LLVM should not derive any attribute based on function body right?
Fixed by commit https://reviews.llvm.org/rL362918