diff options
author | Davide Italiano <davide@freebsd.org> | 2017-01-04 14:01:58 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-01-04 14:01:58 +0000 |
commit | db009394039c72f1910ee472a58345b9f0aad952 (patch) | |
tree | fdb9cbe608bd216d86757f8a94c44347fcbfd3aa /llvm/test/CodeGen/SPARC/soft-float.ll | |
parent | bb895f3e9c49d14d637bdf14358e062160803655 (diff) | |
download | bcm5719-llvm-db009394039c72f1910ee472a58345b9f0aad952.tar.gz bcm5719-llvm-db009394039c72f1910ee472a58345b9f0aad952.zip |
[SPARC] Fix test so that it checks the correct label.
Before it wasn't checking anything.
llvm-svn: 290963
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 53ca1974659..582804444f3 100644 --- a/llvm/test/CodeGen/SPARC/soft-float.ll +++ b/llvm/test/CodeGen/SPARC/soft-float.ll @@ -45,21 +45,21 @@ define fp128 @test_multf3(fp128 %a, fp128 %b) #0 { } define float @test_subsf3(float %a, float %b) #0 { - ; CHCEK-LABEL: test_subsf3: + ; CHECK-LABEL: test_subsf3: ; CHECK: call __subsf3 %sub = fsub float %a, %b ret float %sub } define double @test_subdf3(double %a, double %b) #0 { - ; CHCEK-LABEL: test_subdf3: + ; CHECK-LABEL: test_subdf3: ; CHECK: call __subdf3 %sub = fsub double %a, %b ret double %sub } define fp128 @test_subtf3(fp128 %a, fp128 %b) #0 { - ; CHCEK-LABEL: test_subtf3: + ; CHECK-LABEL: test_subtf3: ; CHECK: call __subtf3 %sub = fsub fp128 %a, %b ret fp128 %sub |