Fix spelling and grammar in a comment.
[oota-llvm.git] / test / Transforms / Reassociate / 2002-07-09-DominanceProblem.ll
index 3829148699265c4d916ae4fac3dcf2a64d676ced..c19baeaae68f8957c65b10406f85f8f075337d58 100644 (file)
@@ -2,9 +2,9 @@
 ;
 ; RUN: llvm-as < %s | opt -reassociate
 
-int %compute_dist(int %i, int %j) {
-        %reg119 = sub int %j, %i
-        ret int %reg119
+define i32 @compute_dist(i32 %i, i32 %j) {
+       %reg119 = sub i32 %j, %i                ; <i32> [#uses=1]
+       ret i32 %reg119
 }