18 lines · plain
1; RUN: llc < %s2 3; This caused ScheduleDAG to crash in EmitPhysRegCopy when searching4; the uses of a copy to a physical register without ignoring non-data5; dependence, PR10220.6 7define void @f(ptr nocapture %a, ptr nocapture %b, ptr nocapture %cc, ptr nocapture %dd) nounwind uwtable noinline ssp {8entry:9 %c = load i256, ptr %cc10 %d = load i256, ptr %dd11 %add = add nsw i256 %c, %d12 store i256 %add, ptr %a, align 813 %or = or i256 %c, 160693804425899027554196209234116260252220299378279283530137614 %add6 = add nsw i256 %or, %d15 store i256 %add6, ptr %b, align 816 ret void17}18