[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / FunctionAttrs / 2008-09-03-Mutual.ll
blob1d75248f41f8b71feabbe5c1cd1565fc4098e541
1 ; RUN: opt < %s -function-attrs -S | FileCheck %s
2 ; RUN: opt < %s -passes=function-attrs -S | FileCheck %s
4 ; CHECK: Function Attrs
5 ; CHECK-SAME: readnone
6 ; CHECK-NEXT: define i32 @a
7 define i32 @a() {
8         %tmp = call i32 @b( )           ; <i32> [#uses=1]
9         ret i32 %tmp
12 ; CHECK: Function Attrs
13 ; CHECK-SAME: readnone
14 ; CHECK-NEXT: define i32 @b
15 define i32 @b() {
16         %tmp = call i32 @a( )           ; <i32> [#uses=1]
17         ret i32 %tmp