diff options
Diffstat (limited to 'test/CodeGen/SystemZ/fp-move-03.ll')
-rw-r--r-- | test/CodeGen/SystemZ/fp-move-03.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/CodeGen/SystemZ/fp-move-03.ll b/test/CodeGen/SystemZ/fp-move-03.ll index 37dbdfa..1273358 100644 --- a/test/CodeGen/SystemZ/fp-move-03.ll +++ b/test/CodeGen/SystemZ/fp-move-03.ll @@ -4,7 +4,7 @@ ; Test the low end of the LE range. define float @f1(float *%src) { -; CHECK: f1: +; CHECK-LABEL: f1: ; CHECK: le %f0, 0(%r2) ; CHECK: br %r14 %val = load float *%src @@ -13,7 +13,7 @@ define float @f1(float *%src) { ; Test the high end of the LE range. define float @f2(float *%src) { -; CHECK: f2: +; CHECK-LABEL: f2: ; CHECK: le %f0, 4092(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 1023 @@ -23,7 +23,7 @@ define float @f2(float *%src) { ; Check the next word up, which should use LEY instead of LE. define float @f3(float *%src) { -; CHECK: f3: +; CHECK-LABEL: f3: ; CHECK: ley %f0, 4096(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 1024 @@ -33,7 +33,7 @@ define float @f3(float *%src) { ; Check the high end of the aligned LEY range. define float @f4(float *%src) { -; CHECK: f4: +; CHECK-LABEL: f4: ; CHECK: ley %f0, 524284(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 131071 @@ -44,7 +44,7 @@ define float @f4(float *%src) { ; Check the next word up, which needs separate address logic. ; Other sequences besides this one would be OK. define float @f5(float *%src) { -; CHECK: f5: +; CHECK-LABEL: f5: ; CHECK: agfi %r2, 524288 ; CHECK: le %f0, 0(%r2) ; CHECK: br %r14 @@ -55,7 +55,7 @@ define float @f5(float *%src) { ; Check the high end of the negative aligned LEY range. define float @f6(float *%src) { -; CHECK: f6: +; CHECK-LABEL: f6: ; CHECK: ley %f0, -4(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 -1 @@ -65,7 +65,7 @@ define float @f6(float *%src) { ; Check the low end of the LEY range. define float @f7(float *%src) { -; CHECK: f7: +; CHECK-LABEL: f7: ; CHECK: ley %f0, -524288(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 -131072 @@ -76,7 +76,7 @@ define float @f7(float *%src) { ; Check the next word down, which needs separate address logic. ; Other sequences besides this one would be OK. define float @f8(float *%src) { -; CHECK: f8: +; CHECK-LABEL: f8: ; CHECK: agfi %r2, -524292 ; CHECK: le %f0, 0(%r2) ; CHECK: br %r14 @@ -87,7 +87,7 @@ define float @f8(float *%src) { ; Check that LE allows an index. define float @f9(i64 %src, i64 %index) { -; CHECK: f9: +; CHECK-LABEL: f9: ; CHECK: le %f0, 4092({{%r3,%r2|%r2,%r3}}) ; CHECK: br %r14 %add1 = add i64 %src, %index @@ -99,7 +99,7 @@ define float @f9(i64 %src, i64 %index) { ; Check that LEY allows an index. define float @f10(i64 %src, i64 %index) { -; CHECK: f10: +; CHECK-LABEL: f10: ; CHECK: ley %f0, 4096({{%r3,%r2|%r2,%r3}}) ; CHECK: br %r14 %add1 = add i64 %src, %index |