================
@@ -0,0 +1,6 @@
+// RUN: %clang_cc1 -std=c11 -fsyntax-only
-fexperimental-new-constant-interpreter %s
+
+void foo(void) {
+ // Complex comparison evaluated in a discarded context.
+ (void)(0 && (1i == 1i));
+}
----------------
tbaederr wrote:Add this to an existing test case. https://github.com/llvm/llvm-project/pull/177731 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
