diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/cond-load-01.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/cond-load-01.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/SystemZ/cond-load-01.ll b/llvm/test/CodeGen/SystemZ/cond-load-01.ll index c7ec4105cbc..9fb5894034e 100644 --- a/llvm/test/CodeGen/SystemZ/cond-load-01.ll +++ b/llvm/test/CodeGen/SystemZ/cond-load-01.ll @@ -15,7 +15,7 @@ define i32 @f1(i32 %easy, i32 *%ptr, i32 %limit) { ; CHECK: loche %r2, 0(%r3) ; CHECK: br %r14 %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -27,7 +27,7 @@ define i32 @f2(i32 %easy, i32 *%ptr, i32 %limit) { ; CHECK: locl %r2, 0(%r3) ; CHECK: br %r14 %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %other, i32 %easy ret i32 %res } @@ -40,7 +40,7 @@ define i32 @f3(i32 %easy, i32 *%base, i32 %limit) { ; CHECK: br %r14 %ptr = getelementptr i32, i32 *%base, i64 131071 %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -54,7 +54,7 @@ define i32 @f4(i32 %easy, i32 *%base, i32 %limit) { ; CHECK: br %r14 %ptr = getelementptr i32, i32 *%base, i64 131072 %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -67,7 +67,7 @@ define i32 @f5(i32 %easy, i32 *%base, i32 %limit) { ; CHECK: br %r14 %ptr = getelementptr i32, i32 *%base, i64 -131072 %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -81,7 +81,7 @@ define i32 @f6(i32 %easy, i32 *%base, i32 %limit) { ; CHECK: br %r14 %ptr = getelementptr i32, i32 *%base, i64 -131073 %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -95,7 +95,7 @@ define i32 @f7(i32 %alt, i32 %limit) { %ptr = alloca i32 %easy = call i32 @foo(i32 *%ptr) %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -109,7 +109,7 @@ define i32 @f8(i32 %easy, i32 %limit, i64 %base, i64 %index) { %add = add i64 %base, %index %ptr = inttoptr i64 %add to i32 * %cond = icmp ult i32 %limit, 42 - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr %res = select i1 %cond, i32 %easy, i32 %other ret i32 %res } @@ -125,7 +125,7 @@ entry: br i1 %cmp, label %load, label %exit load: - %other = load i32 , i32 *%ptr + %other = load i32, i32 *%ptr br label %exit exit: |