llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Fady Farag (iidmsa) <details> <summary>Changes</summary> The test had CHECK directives that were never executed because the RUN line did not pipe the output to FileCheck. --- Full diff: https://github.com/llvm/llvm-project/pull/183965.diff 1 Files Affected: - (modified) clang/test/C/C11/n1311.c (+1-1) ``````````diff diff --git a/clang/test/C/C11/n1311.c b/clang/test/C/C11/n1311.c index 8ceee74e43af6..fd6cb6a9b09db 100644 --- a/clang/test/C/C11/n1311.c +++ b/clang/test/C/C11/n1311.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm -o - %s +// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s /* WG14 N1311: Yes * Initializing static or external variables `````````` </details> https://github.com/llvm/llvm-project/pull/183965 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
