blob: 5cc48c212c4081e06551a973b558525d3683fcd3 [file] [log] [blame]
Lang Hames2bbdc0b2011-07-07 00:36:02 +00001; RUN: llc < %s
Andrew Trick1b9d9b62011-07-12 03:39:22 +00002; This caused ScheduleDAG to crash in EmitPhysRegCopy when searching
3; the uses of a copy to a physical register without ignoring non-data
4; dependence, PR10220.
Lang Hames2bbdc0b2011-07-07 00:36:02 +00005
Lang Hames2bbdc0b2011-07-07 00:36:02 +00006define void @f(i256* nocapture %a, i256* nocapture %b, i256* nocapture %cc, i256* nocapture %dd) nounwind uwtable noinline ssp {
7entry:
David Blaikiea79ac142015-02-27 21:17:42 +00008 %c = load i256, i256* %cc
9 %d = load i256, i256* %dd
Lang Hames2bbdc0b2011-07-07 00:36:02 +000010 %add = add nsw i256 %c, %d
11 store i256 %add, i256* %a, align 8
12 %or = or i256 %c, 1606938044258990275541962092341162602522202993782792835301376
13 %add6 = add nsw i256 %or, %d
14 store i256 %add6, i256* %b, align 8
15 ret void
16}