Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
[oota-llvm.git] / test / Transforms / Reassociate / 2002-07-09-DominanceProblem.ll
1 ; The reassociate pass is not preserving dominance properties correctly
2 ;
3 ; RUN: llvm-as < %s | opt -reassociate
4
5 int %compute_dist(int %i, int %j) {
6         %reg119 = sub int %j, %i
7         ret int %reg119
8 }
9
10