diff options
Diffstat (limited to 'llvm/test/CodeGen/SPARC/soft-float.ll')
-rw-r--r-- | llvm/test/CodeGen/SPARC/soft-float.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/SPARC/soft-float.ll b/llvm/test/CodeGen/SPARC/soft-float.ll index 582804444f3..35cbbb1adaf 100644 --- a/llvm/test/CodeGen/SPARC/soft-float.ll +++ b/llvm/test/CodeGen/SPARC/soft-float.ll @@ -151,21 +151,21 @@ define i1 @test_netf2(fp128 %a, fp128 %b) #0 { } define i1 @test_gesf2(float %a, float %b) #0 { - ; CHECK-LABLE: test_gesf2: + ; CHECK-LABEL: test_gesf2: ; CHECK: call __gesf2 %cmp = fcmp oge float %a, %b ret i1 %cmp } define i1 @test_gedf2(double %a, double %b) #0 { - ; CHECK-LABLE: test_gedf2: + ; CHECK-LABEL: test_gedf2: ; CHECK: call __gedf2 %cmp = fcmp oge double %a, %b ret i1 %cmp } define i1 @test_getf2(fp128 %a, fp128 %b) #0 { - ; CHECK-LABLE: test_getf2: + ; CHECK-LABEL: test_getf2: ; CHECK: call __getf2 %cmp = fcmp oge fp128 %a, %b ret i1 %cmp |