diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/cond-load-02.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/cond-load-02.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/SystemZ/cond-load-02.ll b/llvm/test/CodeGen/SystemZ/cond-load-02.ll index c40b2cca1de..ac1c44ccaeb 100644 --- a/llvm/test/CodeGen/SystemZ/cond-load-02.ll +++ b/llvm/test/CodeGen/SystemZ/cond-load-02.ll @@ -11,7 +11,7 @@ define i64 @f1(i64 %easy, i64 *%ptr, i64 %limit) { ; CHECK: locghe %r2, 0(%r3) ; CHECK: br %r14 %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -23,7 +23,7 @@ define i64 @f2(i64 %easy, i64 *%ptr, i64 %limit) { ; CHECK: locgl %r2, 0(%r3) ; CHECK: br %r14 %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %other, i64 %easy ret i64 %res } @@ -36,7 +36,7 @@ define i64 @f3(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: br %r14 %ptr = getelementptr i64, i64 *%base, i64 65535 %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -50,7 +50,7 @@ define i64 @f4(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: br %r14 %ptr = getelementptr i64, i64 *%base, i64 65536 %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -63,7 +63,7 @@ define i64 @f5(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: br %r14 %ptr = getelementptr i64, i64 *%base, i64 -65536 %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -77,7 +77,7 @@ define i64 @f6(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: br %r14 %ptr = getelementptr i64, i64 *%base, i64 -65537 %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -91,7 +91,7 @@ define i64 @f7(i64 %alt, i64 %limit) { %ptr = alloca i64 %easy = call i64 @foo(i64 *%ptr) %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -105,7 +105,7 @@ define i64 @f8(i64 %easy, i64 %limit, i64 %base, i64 %index) { %add = add i64 %base, %index %ptr = inttoptr i64 %add to i64 * %cond = icmp ult i64 %limit, 42 - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -121,7 +121,7 @@ entry: br i1 %cmp, label %load, label %exit load: - %other = load i64 , i64 *%ptr + %other = load i64, i64 *%ptr br label %exit exit: |