blob: 7c26dc17531967c8aa50f2fc9f6d2c6a359c8686 [file] [log] [blame]
Chris Lattner14329b12002-07-09 19:41:21 +00001; The reassociate pass is not preserving dominance properties correctly
2;
3; RUN: as < %s | opt -reassociate -verify
4
5int %compute_dist(int %i, int %j) {
6 %reg119 = sub int %j, %i
7 ret int %reg119
8}
9
10