[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / FunctionAttrs / read-write-scc.ll
blob319aaf013623367cb4f3ec4115e315ca6e7d9f3e
1 ; RUN: opt -S -functionattrs < %s | FileCheck %s
2 ; RUN: opt -S -passes=function-attrs < %s | FileCheck %s
4 @i = global i32 0
6 define void @foo() {
7 ; CHECK-LABEL: define void @foo() #0 {
8   store i32 1, i32* @i
9   call void @bar()
10   ret void
13 define void @bar() {
14 ; CHECK-LABEL: define void @bar() #0 {
15   %i = load i32, i32* @i
16   call void @foo()
17   ret void
20 ; CHECK: attributes #0 = { nofree nounwind }