[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / GlobalOpt / 2012-05-11-blockaddress.ll
blob24213af024f578eb63e5784b8b09633023e0bb95
1 ; RUN: opt < %s -globalopt -S | FileCheck %s
2 ; Check that the mere presence of a blockaddress doesn't prevent -globalopt
3 ; from promoting @f to fastcc.
5 ; CHECK-LABEL: define{{.*}}fastcc{{.*}}@f(
6 define internal i8* @f() {
7   ret i8* blockaddress(@f, %L1)
8 L1:
9   ret i8* null
12 define void @g() {
13   ; CHECK: call{{.*}}fastcc{{.*}}@f
14   %p = call i8* @f()
15   ret void