24 lines · plain
1; RUN: llc -mcpu=pwr7 < %s -verify-machineinstrs | FileCheck %s2target datalayout = "E-m:e-i64:64-n32:64"3target triple = "powerpc64-unknown-linux-gnu"4 5; Function Attrs: nounwind6define void @Compute_Lateral() #0 {7entry:8 br i1 undef, label %if.then, label %if.end9 10if.then: ; preds = %entry11 unreachable12 13if.end: ; preds = %entry14 %0 = select i1 undef, <2 x double> undef, <2 x double> zeroinitializer15 %1 = extractelement <2 x double> %0, i32 116 store double %1, ptr undef, align 817 ret void18 19; CHECK-LABEL: @Compute_Lateral20}21 22attributes #0 = { nounwind }23 24