[clang] [NFC] Add redirect the output (PR #179623)

via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 3 23:57:17 PST 2026


https://github.com/GkvJwa created https://github.com/llvm/llvm-project/pull/179623

None

>From b40e7e0d29e5ca8d355b97c7d661fb0506168b13 Mon Sep 17 00:00:00 2001
From: GkvJwa <gkvjwa at gmail.com>
Date: Wed, 4 Feb 2026 15:56:23 +0800
Subject: [PATCH] [NFC] Add redirect the output

---
 clang/test/CodeGenCXX/exceptions-seh.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/clang/test/CodeGenCXX/exceptions-seh.cpp b/clang/test/CodeGenCXX/exceptions-seh.cpp
index 22665a0c8fcc3..57c1d1530ecca 100644
--- a/clang/test/CodeGenCXX/exceptions-seh.cpp
+++ b/clang/test/CodeGenCXX/exceptions-seh.cpp
@@ -5,11 +5,11 @@
 // RUN:         -o - -mconstructor-aliases -O1 -disable-llvm-passes | \
 // RUN:         FileCheck %s --check-prefix=CHECK --check-prefix=NOCXX
 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \
-// RUN:         -fms-extensions -x c++ -emit-llvm -verify %s -DERR1
+// RUN:         -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR1
 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \
-// RUN:         -fms-extensions -x c++ -emit-llvm -verify %s -DERR2
+// RUN:         -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR2
 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \
-// RUN:         -fms-extensions -x c++ -emit-llvm -verify %s -DERR3
+// RUN:         -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR3
 
 extern "C" unsigned long _exception_code();
 extern "C" void might_throw();



More information about the cfe-commits mailing list