[clang] [CIR] Upstream binary assignments and comma (PR #135115)
Morris Hafner via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 10 08:32:18 PDT 2025
================
@@ -0,0 +1,53 @@
+// RUN: %clang_cc1 -std=c23 -triple x86_64-unknown-linux-gnu -fclangir -emit-cir %s -o %t.cir
+// RUN: FileCheck --input-file=%t.cir %s -check-prefix=CIR
+// RUN: %clang_cc1 -std=c23 -triple x86_64-unknown-linux-gnu -Wno-unused-value -fclangir -emit-llvm %s -o %t-cir.ll
+// RUN: FileCheck --input-file=%t-cir.ll %s -check-prefix=LLVM
+// RUN: %clang_cc1 -std=c23 -triple x86_64-unknown-linux-gnu -Wno-unused-value -emit-llvm %s -o %t.ll
+// RUN: FileCheck --input-file=%t.ll %s -check-prefix=OGCG
+
+void comma(void) {
+ bool b;
+ char c;
+ float f;
+ int i;
+
+ b = true, c = 65, f = 3.14f, i = 42;
----------------
mmha wrote:
So, I did add another test for `i = 100, 200;` but we don't support ParenExprs, yet, so I can't really check that the result of that expression is `200` for now.
https://github.com/llvm/llvm-project/pull/135115
More information about the cfe-commits
mailing list