https://github.com/GkvJwa updated https://github.com/llvm/llvm-project/pull/179623
>From b40e7e0d29e5ca8d355b97c7d661fb0506168b13 Mon Sep 17 00:00:00 2001 From: GkvJwa <[email protected]> Date: Wed, 4 Feb 2026 15:56:23 +0800 Subject: [PATCH 1/4] [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(); >From 202f6b444f3172edd2506f3c34f75bb65f5e9889 Mon Sep 17 00:00:00 2001 From: GkvJwa <[email protected]> Date: Wed, 4 Feb 2026 16:29:47 +0800 Subject: [PATCH 2/4] Drop --- 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 57c1d1530ecca..6b3b679e99714 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 -o - %s -DERR1 +// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - /dev/null %s -DERR1 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \ -// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR2 +// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - /dev/null %s -DERR2 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \ -// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR3 +// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - /dev/null %s -DERR3 extern "C" unsigned long _exception_code(); extern "C" void might_throw(); >From b49159db4e40ff7ad6f5aa5860b85d7982970485 Mon Sep 17 00:00:00 2001 From: GkvJwa <[email protected]> Date: Wed, 4 Feb 2026 16:52:32 +0800 Subject: [PATCH 3/4] Revert "Drop" This reverts commit 202f6b444f3172edd2506f3c34f75bb65f5e9889. --- 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 6b3b679e99714..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 -o - /dev/null %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 -o - /dev/null %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 -o - /dev/null %s -DERR3 +// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR3 extern "C" unsigned long _exception_code(); extern "C" void might_throw(); >From ac92e4af7d18f2d542b3ddf3dd9a8d8134aa16e1 Mon Sep 17 00:00:00 2001 From: GkvJwa <[email protected]> Date: Wed, 4 Feb 2026 17:25:04 +0800 Subject: [PATCH 4/4] Use emit-llvm-only --- 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 57c1d1530ecca..7ccd17fa73bbd 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 -o - %s -DERR1 +// RUN: -fms-extensions -x c++ -emit-llvm-only -verify %s -DERR1 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \ -// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR2 +// RUN: -fms-extensions -x c++ -emit-llvm-only -verify %s -DERR2 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions \ -// RUN: -fms-extensions -x c++ -emit-llvm -verify -o - %s -DERR3 +// RUN: -fms-extensions -x c++ -emit-llvm-only -verify %s -DERR3 extern "C" unsigned long _exception_code(); extern "C" void might_throw(); _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
