[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / FunctionAttrs / comdat-ipo.ll
blobd2f194facba8b0bec81083e1cc28813533f7d4c6
1 ; RUN: opt < %s -functionattrs -S | FileCheck %s
2 ; RUN: opt < %s -passes=function-attrs -S | FileCheck %s
4 ; See PR26774
6 ; CHECK-LABEL: define void @bar(i8* readonly %0) {
7 define void @bar(i8* readonly) {
8   call void @foo(i8* %0)
9   ret void
13 ; CHECK-LABEL: define linkonce_odr void @foo(i8* readonly %0) {
14 define linkonce_odr void @foo(i8* readonly) {
15   call void @bar(i8* %0)
16   ret void