diff options
Diffstat (limited to 'test/CodeGen/SystemZ/cond-load-02.ll')
-rw-r--r-- | test/CodeGen/SystemZ/cond-load-02.ll | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/test/CodeGen/SystemZ/cond-load-02.ll b/test/CodeGen/SystemZ/cond-load-02.ll index e97f472..d0fe65e 100644 --- a/test/CodeGen/SystemZ/cond-load-02.ll +++ b/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 *%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 *%ptr + %other = load i64 , i64 *%ptr %res = select i1 %cond, i64 %other, i64 %easy ret i64 %res } @@ -34,9 +34,9 @@ define i64 @f3(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: clgfi %r4, 42 ; CHECK: locghe %r2, 524280(%r3) ; CHECK: br %r14 - %ptr = getelementptr i64 *%base, i64 65535 + %ptr = getelementptr i64, i64 *%base, i64 65535 %cond = icmp ult i64 %limit, 42 - %other = load i64 *%ptr + %other = load i64 , i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -48,9 +48,9 @@ define i64 @f4(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: clgfi %r4, 42 ; CHECK: locghe %r2, 0(%r3) ; CHECK: br %r14 - %ptr = getelementptr i64 *%base, i64 65536 + %ptr = getelementptr i64, i64 *%base, i64 65536 %cond = icmp ult i64 %limit, 42 - %other = load i64 *%ptr + %other = load i64 , i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -61,9 +61,9 @@ define i64 @f5(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: clgfi %r4, 42 ; CHECK: locghe %r2, -524288(%r3) ; CHECK: br %r14 - %ptr = getelementptr i64 *%base, i64 -65536 + %ptr = getelementptr i64, i64 *%base, i64 -65536 %cond = icmp ult i64 %limit, 42 - %other = load i64 *%ptr + %other = load i64 , i64 *%ptr %res = select i1 %cond, i64 %easy, i64 %other ret i64 %res } @@ -75,9 +75,9 @@ define i64 @f6(i64 %easy, i64 *%base, i64 %limit) { ; CHECK: clgfi %r4, 42 ; CHECK: locghe %r2, 0(%r3) ; CHECK: br %r14 - %ptr = getelementptr i64 *%base, i64 -65537 + %ptr = getelementptr i64, i64 *%base, i64 -65537 %cond = icmp ult i64 %limit, 42 - %other = load 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 *%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 *%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 *%ptr + %other = load i64 , i64 *%ptr br label %exit exit: |