[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / PowerPC / pr17354.ll
blob38b98dffccea7a2b5c27b1bca3c4a59b477dab97
1 ; RUN: llc -verify-machineinstrs -mcpu=pwr7 -relocation-model=pic <%s | FileCheck %s
3 ; Test that PR17354 is fixed.  We must generate a nop following even
4 ; local calls when generating code for shared libraries, to permit
5 ; TOC fixup.
7 target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
8 target triple = "powerpc64-unknown-linux-gnu"
10 %struct.CS = type { i32 }
12 @_ZL3glb = internal global [1 x %struct.CS] zeroinitializer, align 4
13 @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__I_a, ptr null }]
15 define internal void @__cxx_global_var_init() section ".text.startup" {
16 entry:
17   call void @_Z4funcv(ptr sret(%struct.CS) @_ZL3glb)
18   ret void
21 ; CHECK-LABEL: __cxx_global_var_init:
22 ; CHECK: bl _Z4funcv
23 ; CHECK-NEXT: nop
25 ; Function Attrs: nounwind
26 define void @_Z4funcv(ptr noalias sret(%struct.CS) %agg.result) #0 {
27 entry:
28   store i32 0, ptr %agg.result, align 4
29   ret void
32 define internal void @_GLOBAL__I_a() section ".text.startup" {
33 entry:
34   call void @__cxx_global_var_init()
35   ret void
38 attributes #0 = { nounwind "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }