[Mlir-commits] [mlir] [NFC][MLIR][NVVM] Remove duplicate RUN line in nvvm-transcendentals.mlir (PR #196276)
Varad Rahul Kamthe
llvmlistbot at llvm.org
Thu May 7 03:47:35 PDT 2026
https://github.com/varadk27 created https://github.com/llvm/llvm-project/pull/196276
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.
>From b33e682d08f144d6b04a44727d0d5bc427b8c43f Mon Sep 17 00:00:00 2001
From: Varad Rahul Kamthe <vkamthe at nvidia.com>
Date: Thu, 7 May 2026 10:43:28 +0000
Subject: [PATCH] [MLIR][NVVM] Remove duplicate RUN line in
nvvm-transcendentals.mlir
---
mlir/test/Dialect/LLVMIR/nvvm-transcendentals.mlir | 1 -
1 file changed, 1 deletion(-)
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 {
More information about the Mlir-commits
mailing list