https://github.com/googlewalt created https://github.com/llvm/llvm-project/pull/168751
None >From a42b8b4f60773cda99129f193e04332931e5eeea Mon Sep 17 00:00:00 2001 From: Walter Lee <[email protected]> Date: Wed, 19 Nov 2025 13:40:56 -0500 Subject: [PATCH] Minor fix of reproducer in #165572 --- clang/test/Driver/crash-ir-repro.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/test/Driver/crash-ir-repro.cpp b/clang/test/Driver/crash-ir-repro.cpp index 1f31a5ca1bb34..fd97e6f0cce11 100644 --- a/clang/test/Driver/crash-ir-repro.cpp +++ b/clang/test/Driver/crash-ir-repro.cpp @@ -1,9 +1,8 @@ // RUN: %clang -S -emit-llvm -o %t.ll %s -// RUN: not %clang -S -DCRASH %s %t.ll 2>&1 | FileCheck %s +// RUN: not %clang -S -DCRASH %s -o %t.ll 2>&1 | FileCheck %s // CHECK: Preprocessed source(s) and associated run script(s) are located at: // CHECK-NEXT: clang: note: diagnostic msg: {{.*}}.cpp -// CHECK-NEXT: clang: note: diagnostic msg: {{.*}}.ll // CHECK-NEXT: clang: note: diagnostic msg: {{.*}}.sh #ifdef CRASH _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
