[Mlir-commits] [mlir] [NFC][MLIR][NVVM] Remove duplicate RUN line in nvvm-transcendentals.mlir (PR #196276)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu May 7 03:48:28 PDT 2026


llvmorg-github-actions[bot] wrote:


<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir

@llvm/pr-subscribers-mlir-llvm

Author: Varad Rahul Kamthe (varadk27)

<details>
<summary>Changes</summary>

The test `mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir` contains
two identical RUN directives:

    // RUN: mlir-opt %s -split-input-file | FileCheck %s

The file has no `// -----` split markers, so the second RUN only
re-executes the same checks against the same input.
Removing the redundant directive. NFC.

---
Full diff: https://github.com/llvm/llvm-project/pull/196276.diff


1 Files Affected:

- (modified) mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir (-1) 


``````````diff
diff --git a/mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir b/mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir
index aa5439a70395e..eaaedd335d3d2 100644
--- a/mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir
+++ b/mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir
@@ -13,7 +13,6 @@ func.func @nvvm_cos_ftz_f32(%arg0: f32) -> f32 {
   %0 = nvvm.cos %arg0 {ftz = true} : f32
   return %0 : f32
 }
-// RUN: mlir-opt %s -split-input-file | FileCheck %s
 
 // CHECK-LABEL: @nvvm_sin_f32
 func.func @nvvm_sin_f32(%arg0: f32) -> f32 {

``````````

</details>


https://github.com/llvm/llvm-project/pull/196276


More information about the Mlir-commits mailing list