diff options
Diffstat (limited to 'test/CodeGen/SystemZ/branch-03.ll')
| -rw-r--r-- | test/CodeGen/SystemZ/branch-03.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CodeGen/SystemZ/branch-03.ll b/test/CodeGen/SystemZ/branch-03.ll index 1e447d034a396..ef31a9c696eab 100644 --- a/test/CodeGen/SystemZ/branch-03.ll +++ b/test/CodeGen/SystemZ/branch-03.ll @@ -3,11 +3,11 @@ ; ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s define void @f1(i32 *%src, i32 %target) { -; CHECK: f1: +; CHECK-LABEL: f1: ; CHECK: .cfi_startproc ; CHECK: .L[[LABEL:.*]]: ; CHECK: cl %r3, 0(%r2) -; CHECK-NEXT: j{{g?}}le .L[[LABEL]] +; CHECK-NEXT: jle .L[[LABEL]] br label %loop loop: %val = load volatile i32 *%src @@ -18,11 +18,11 @@ exit: } define void @f2(i32 *%src, i32 %target) { -; CHECK: f2: +; CHECK-LABEL: f2: ; CHECK: .cfi_startproc ; CHECK: .L[[LABEL:.*]]: ; CHECK: cl %r3, 0(%r2) -; CHECK-NEXT: j{{g?}}l .L[[LABEL]] +; CHECK-NEXT: jl .L[[LABEL]] br label %loop loop: %val = load volatile i32 *%src @@ -33,11 +33,11 @@ exit: } define void @f3(i32 *%src, i32 %target) { -; CHECK: f3: +; CHECK-LABEL: f3: ; CHECK: .cfi_startproc ; CHECK: .L[[LABEL:.*]]: ; CHECK: cl %r3, 0(%r2) -; CHECK-NEXT: j{{g?}}h .L[[LABEL]] +; CHECK-NEXT: jh .L[[LABEL]] br label %loop loop: %val = load volatile i32 *%src @@ -48,11 +48,11 @@ exit: } define void @f4(i32 *%src, i32 %target) { -; CHECK: f4: +; CHECK-LABEL: f4: ; CHECK: .cfi_startproc ; CHECK: .L[[LABEL:.*]]: ; CHECK: cl %r3, 0(%r2) -; CHECK-NEXT: j{{g?}}he .L[[LABEL]] +; CHECK-NEXT: jhe .L[[LABEL]] br label %loop loop: %val = load volatile i32 *%src |
