brintos

brintos / llvm-project-archived public Read only

0
0
Text · 923 B · e807765 Raw
27 lines · plain
1;RUN: llc < %s -mtriple=r600 -mcpu=cayman2 3; CHECK-LABEL: {{^}}main:4; CHECK: PRED_SETE_INT * Pred,5; CHECK: DOT4 T{{[0-9]+}}.X, T0.X, T0.X, Pred_sel_one6define amdgpu_ps void @main(<4 x float> inreg) {7main_body:8  %1 = extractelement <4 x float> %0, i32 09  %2 = bitcast float %1 to i3210  %3 = icmp eq i32 %2, 011  br i1 %3, label %IF, label %ENDIF12 13IF:                                             ; preds = %main_body14  %4 = call float @llvm.r600.dot4(<4 x float> %0, <4 x float> %0)15  br label %ENDIF16 17ENDIF:                                            ; preds = %IF, %main_body18  %5 = phi float [%4, %IF], [0.000000e+00, %main_body]19  %6 = insertelement <4 x float> poison, float %5, i32 020  call void @llvm.r600.store.swizzle(<4 x float> %6, i32 0, i32 0)21  ret void22}23 24declare float @llvm.r600.dot4(<4 x float>, <4 x float>) #125declare void @llvm.r600.store.swizzle(<4 x float>, i32, i32)26attributes #1 = { readnone }27