blob: 6a0ef53279aa458256d91d9e380f82a0ede27ad4 [file] [log] [blame]
Chris Lattner14329b12002-07-09 19:41:21 +00001; The reassociate pass is not preserving dominance properties correctly
2;
Reid Spencer69ccadd2006-12-02 04:23:10 +00003; RUN: llvm-upgrade < %s | llvm-as | 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