diff options
author | Gabor Buella <gabor.buella@intel.com> | 2018-07-04 13:28:39 +0000 |
---|---|---|
committer | Gabor Buella <gabor.buella@intel.com> | 2018-07-04 13:28:39 +0000 |
commit | da4a966e1c3c0315512e1dfe5cd486722bcc0fbf (patch) | |
tree | 2e718fd3ceb9fe5f6e0dbec033a5181559550252 /llvm/test/CodeGen/SPARC/soft-float.ll | |
parent | ab2b0530d934fbacd6b9bf1dde240b948869b886 (diff) | |
download | bcm5719-llvm-da4a966e1c3c0315512e1dfe5cd486722bcc0fbf.tar.gz bcm5719-llvm-da4a966e1c3c0315512e1dfe5cd486722bcc0fbf.zip |
NFC - Various typo fixes in tests
llvm-svn: 336268
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 |