https://github.com/tbaederr created https://github.com/llvm/llvm-project/pull/218426
No reason to use the driver here. >From 88aa73e4fccbad9e0034201888c306325cb48282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= <[email protected]> Date: Mon, 24 Aug 2026 16:27:26 +0200 Subject: [PATCH] [clang][test] Don't use driver in microsoft-constexpr test --- clang/test/SemaCXX/microsoft-constexpr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/SemaCXX/microsoft-constexpr.cpp b/clang/test/SemaCXX/microsoft-constexpr.cpp index 9709db58b4e64..971afeb5a612f 100644 --- a/clang/test/SemaCXX/microsoft-constexpr.cpp +++ b/clang/test/SemaCXX/microsoft-constexpr.cpp @@ -1,7 +1,7 @@ // Some of this should fail in MSVC, but work in clang // when -fms-compatibility is enabled. -// RUN: %clang -fsyntax-only -fms-compatibility -std=c++20 %s -// RUN: %clang -fsyntax-only -fms-compatibility -std=c++20 -fexperimental-new-constant-interpreter %s +// RUN: %clang_cc1 -fsyntax-only -fms-compatibility -std=c++20 %s +// RUN: %clang_cc1 -fsyntax-only -fms-compatibility -std=c++20 -fexperimental-new-constant-interpreter %s typedef long LONG; typedef __int64 LONG_PTR, *PLONG_PTR; _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
