diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/fp-sub-02.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/fp-sub-02.ll | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/test/CodeGen/SystemZ/fp-sub-02.ll b/llvm/test/CodeGen/SystemZ/fp-sub-02.ll index b6409fcd6ee..99cafed8d08 100644 --- a/llvm/test/CodeGen/SystemZ/fp-sub-02.ll +++ b/llvm/test/CodeGen/SystemZ/fp-sub-02.ll @@ -6,7 +6,7 @@ declare double @foo() ; Check register subtraction. define double @f1(double %f1, double %f2) { -; CHECK: f1: +; CHECK-LABEL: f1: ; CHECK: sdbr %f0, %f2 ; CHECK: br %r14 %res = fsub double %f1, %f2 @@ -15,7 +15,7 @@ define double @f1(double %f1, double %f2) { ; Check the low end of the SDB range. define double @f2(double %f1, double *%ptr) { -; CHECK: f2: +; CHECK-LABEL: f2: ; CHECK: sdb %f0, 0(%r2) ; CHECK: br %r14 %f2 = load double *%ptr @@ -25,7 +25,7 @@ define double @f2(double %f1, double *%ptr) { ; Check the high end of the aligned SDB range. define double @f3(double %f1, double *%base) { -; CHECK: f3: +; CHECK-LABEL: f3: ; CHECK: sdb %f0, 4088(%r2) ; CHECK: br %r14 %ptr = getelementptr double *%base, i64 511 @@ -37,7 +37,7 @@ define double @f3(double %f1, double *%base) { ; Check the next doubleword up, which needs separate address logic. ; Other sequences besides this one would be OK. define double @f4(double %f1, double *%base) { -; CHECK: f4: +; CHECK-LABEL: f4: ; CHECK: aghi %r2, 4096 ; CHECK: sdb %f0, 0(%r2) ; CHECK: br %r14 @@ -49,7 +49,7 @@ define double @f4(double %f1, double *%base) { ; Check negative displacements, which also need separate address logic. define double @f5(double %f1, double *%base) { -; CHECK: f5: +; CHECK-LABEL: f5: ; CHECK: aghi %r2, -8 ; CHECK: sdb %f0, 0(%r2) ; CHECK: br %r14 @@ -61,7 +61,7 @@ define double @f5(double %f1, double *%base) { ; Check that SDB allows indices. define double @f6(double %f1, double *%base, i64 %index) { -; CHECK: f6: +; CHECK-LABEL: f6: ; CHECK: sllg %r1, %r3, 3 ; CHECK: sdb %f0, 800(%r1,%r2) ; CHECK: br %r14 @@ -74,7 +74,7 @@ define double @f6(double %f1, double *%base, i64 %index) { ; Check that subtractions of spilled values can use SDB rather than SDBR. define double @f7(double *%ptr0) { -; CHECK: f7: +; CHECK-LABEL: f7: ; CHECK: brasl %r14, foo@PLT ; CHECK: sdb %f0, 16{{[04]}}(%r15) ; CHECK: br %r14 |