aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ExecutionEngine/test-arith.ll2
-rw-r--r--test/ExecutionEngine/test-fp.ll2
-rw-r--r--test/ExecutionEngine/test-shift.ll26
3 files changed, 15 insertions, 15 deletions
diff --git a/test/ExecutionEngine/test-arith.ll b/test/ExecutionEngine/test-arith.ll
index 86512da4dc..c3c9ad8eba 100644
--- a/test/ExecutionEngine/test-arith.ll
+++ b/test/ExecutionEngine/test-arith.ll
@@ -21,7 +21,7 @@ int %main() {
%D = div int %C, %C
%E = rem int %D, %D
%F = div uint 5, 6
- %G = rem uint 6, 5
+ %G1 = rem uint 6, 5
%A = add long 0, 12
%B = sub long %A, 1
diff --git a/test/ExecutionEngine/test-fp.ll b/test/ExecutionEngine/test-fp.ll
index 6d32ecbffc..71141da7e3 100644
--- a/test/ExecutionEngine/test-fp.ll
+++ b/test/ExecutionEngine/test-fp.ll
@@ -6,7 +6,7 @@ double %test(double* %DP, double %Arg) {
%X = mul double %W, %W
%Y = div double %X, %X
%Z = rem double %Y, %Y
- %Z = div double %Z, %W
+ %Z1 = div double %Z, %W
%Q = add double %Z, %Arg
%R = cast double %Q to double
store double %R, double* %DP
diff --git a/test/ExecutionEngine/test-shift.ll b/test/ExecutionEngine/test-shift.ll
index 5137613be5..e67608ef4d 100644
--- a/test/ExecutionEngine/test-shift.ll
+++ b/test/ExecutionEngine/test-shift.ll
@@ -16,22 +16,22 @@ int %main() {
%t2 = shl ulong 1, ubyte 5
; Right shifts...
- %t1 = shr int 1, ubyte %shamt
- %t2 = shr int 1, ubyte 4
+ %tr1 = shr int 1, ubyte %shamt
+ %tr2 = shr int 1, ubyte 4
- %t1 = shr uint 1, ubyte %shamt
- %t2 = shr uint 1, ubyte 5
+ %tr1 = shr uint 1, ubyte %shamt
+ %tr2 = shr uint 1, ubyte 5
- ;%t1 = shr long 1, ubyte %shamt
- %t1 = shr long 1, ubyte 4
- %t2 = shr long 1, ubyte %shamt
- %t3 = shl long 1, ubyte 4
- %t4 = shl long 1, ubyte %shamt
+ ;%tr1 = shr long 1, ubyte %shamt
+ %tr1 = shr long 1, ubyte 4
+ %tr2 = shr long 1, ubyte %shamt
+ %tr3 = shl long 1, ubyte 4
+ %tr4 = shl long 1, ubyte %shamt
;%t1 = shr ulong 1, ubyte %shamt
- %t1 = shr ulong 1, ubyte 5
- %t2 = shr ulong 1, ubyte %shamt
- %t3 = shl ulong 1, ubyte 5
- %t4 = shl ulong 1, ubyte %shamt
+ %tr1 = shr ulong 1, ubyte 5
+ %tr2 = shr ulong 1, ubyte %shamt
+ %tr3 = shl ulong 1, ubyte 5
+ %tr4 = shl ulong 1, ubyte %shamt
ret int 0
}