blob: 3829148699265c4d916ae4fac3dcf2a64d676ced [file] [log] [blame]
Chris Lattner14329b12002-07-09 19:41:21 +00001; The reassociate pass is not preserving dominance properties correctly
2;
Misha Brukmane78760e2003-09-16 15:29:54 +00003; RUN: llvm-as < %s | opt -reassociate
Chris Lattner14329b12002-07-09 19:41:21 +00004
5int %compute_dist(int %i, int %j) {
6 %reg119 = sub int %j, %i
7 ret int %reg119
8}
9
10