Displaying 1 result from an estimated 1 matches for "c1e4df67".
2015 Jun 28
2
[LLVMdev] readonly and infinite loops
On Sat, Jun 27, 2015 at 2:46 PM, Daniel Berlin <dberlin at dberlin.org> wrote:
> In C, dunno, but in LLVM, it means they aren't readonly :)
In that case, -functionattrs needs to be fixed:
define void @infloop() {
entry:
br label %l
l:
br label %l
}
== opt -functionattrs ==>
; Function Attrs: readnone
define void @infloop() #0 {
entry:
br label %l
l: