blob: f2d2a62fd8a467f9bcaa47ded39f2180eee5c409 [file] [log] [blame]
Chris Lattner14329b12002-07-09 19:41:21 +00001; The reassociate pass is not preserving dominance properties correctly
2;
Chris Lattner53155992002-08-01 22:26:32 +00003; RUN: 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