1 ; RUN: llc -verify-machineinstrs -mcpu=ppc64 < %s | FileCheck %s
2 target datalayout = "E-m:e-i64:64-n32:64"
3 target triple = "powerpc64-unknown-linux-gnu"
5 ; Function Attrs: nounwind readonly
6 define float @tf(ptr nocapture readonly %i, i32 signext %o) #0 {
8 %idx.ext = sext i32 %o to i64
9 %add.ptr = getelementptr inbounds float, ptr %i, i64 %idx.ext
10 %0 = load float, ptr %add.ptr, align 4
11 %add.ptr.sum = add nsw i64 %idx.ext, 1
12 %add.ptr3 = getelementptr inbounds float, ptr %i, i64 %add.ptr.sum
13 %1 = load float, ptr %add.ptr3, align 4
14 %add = fadd float %0, %1
22 ; Function Attrs: nounwind readonly
23 define double @td(ptr nocapture readonly %i, i32 signext %o) #0 {
25 %idx.ext = sext i32 %o to i64
26 %add.ptr = getelementptr inbounds double, ptr %i, i64 %idx.ext
27 %0 = load double, ptr %add.ptr, align 8
28 %add.ptr.sum = add nsw i64 %idx.ext, 1
29 %add.ptr3 = getelementptr inbounds double, ptr %i, i64 %add.ptr.sum
30 %1 = load double, ptr %add.ptr3, align 8
31 %add = fadd double %0, %1
39 attributes #0 = { nounwind readonly }