[llvm] r290963 - [SPARC] Fix test so that it checks the correct label.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 4 06:01:58 PST 2017
Author: davide
Date: Wed Jan 4 08:01:58 2017
New Revision: 290963
URL: http://llvm.org/viewvc/llvm-project?rev=290963&view=rev
Log:
[SPARC] Fix test so that it checks the correct label.
Before it wasn't checking anything.
Modified:
llvm/trunk/test/CodeGen/SPARC/soft-float.ll
Modified: llvm/trunk/test/CodeGen/SPARC/soft-float.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/SPARC/soft-float.ll?rev=290963&r1=290962&r2=290963&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/SPARC/soft-float.ll (original)
+++ llvm/trunk/test/CodeGen/SPARC/soft-float.ll Wed Jan 4 08:01:58 2017
@@ -45,21 +45,21 @@ define fp128 @test_multf3(fp128 %a, fp12
}
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
More information about the llvm-commits
mailing list