Home | History | Annotate | Download | only in FunctionAttrs
      1 ; RUN: opt < %s -basicaa -functionattrs -S | grep readonly | count 2
      2 
      3 define i32 @f() {
      4 entry:
      5 	%tmp = call i32 @e( )		; <i32> [#uses=1]
      6 	ret i32 %tmp
      7 }
      8 
      9 declare i32 @e() readonly
     10