[llvm] r291617 - [NVPTX] Add CHECK-LABEL where appropriate to fast-math.ll test.

Justin Lebar via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 10 15:42:46 PST 2017


Author: jlebar
Date: Tue Jan 10 17:42:46 2017
New Revision: 291617

URL: http://llvm.org/viewvc/llvm-project?rev=291617&view=rev
Log:
[NVPTX] Add CHECK-LABEL where appropriate to fast-math.ll test.

Also fix up whitespace.

Test-only change.

Modified:
    llvm/trunk/test/CodeGen/NVPTX/fast-math.ll

Modified: llvm/trunk/test/CodeGen/NVPTX/fast-math.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/NVPTX/fast-math.ll?rev=291617&r1=291616&r2=291617&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/NVPTX/fast-math.ll (original)
+++ llvm/trunk/test/CodeGen/NVPTX/fast-math.ll Tue Jan 10 17:42:46 2017
@@ -1,10 +1,8 @@
 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
 
-
 declare float @llvm.nvvm.sqrt.f(float)
 
-
-; CHECK: sqrt_div
+; CHECK-LABEL: sqrt_div
 ; CHECK: sqrt.rn.f32
 ; CHECK: div.rn.f32
 define float @sqrt_div(float %a, float %b) {
@@ -13,7 +11,7 @@ define float @sqrt_div(float %a, float %
   ret float %t2
 }
 
-; CHECK: sqrt_div_fast
+; CHECK-LABEL: sqrt_div_fast
 ; CHECK: sqrt.approx.f32
 ; CHECK: div.approx.f32
 define float @sqrt_div_fast(float %a, float %b) #0 {
@@ -22,22 +20,19 @@ define float @sqrt_div_fast(float %a, fl
   ret float %t2
 }
 
-
-; CHECK: fadd
+; CHECK-LABEL: fadd
 ; CHECK: add.f32
 define float @fadd(float %a, float %b) {
   %t1 = fadd float %a, %b
   ret float %t1
 }
 
-; CHECK: fadd_ftz
+; CHECK-LABEL: fadd_ftz
 ; CHECK: add.ftz.f32
 define float @fadd_ftz(float %a, float %b) #1 {
   %t1 = fadd float %a, %b
   ret float %t1
 }
 
-
-
 attributes #0 = { "unsafe-fp-math" = "true" }
 attributes #1 = { "nvptx-f32ftz" = "true" }




More information about the llvm-commits mailing list