[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / FunctionAttrs / comdat-ipo.ll
blob2a149e436b622809490c4137cc6eba3f2a22fde1
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) {
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) {
14 define linkonce_odr void @foo(i8* readonly) {
15   call void @bar(i8* %0)
16   ret void