Skip to content

Commit ee5ba80

Browse files
bcardosolopeslanza
authored andcommitted
[CIR][CIRGen] Implement VisitBinComma for aggregates
1 parent e1176a3 commit ee5ba80

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

clang/lib/CIR/CodeGen/CIRGenExprAgg.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
259259
E->getType());
260260
}
261261

262-
void VisitBinComma(const BinaryOperator *E) { llvm_unreachable("NYI"); }
262+
void VisitBinComma(const BinaryOperator *E);
263263
void VisitBinCmp(const BinaryOperator *E);
264264
void VisitCXXRewrittenBinaryOperator(CXXRewrittenBinaryOperator *E) {
265265
llvm_unreachable("NYI");
@@ -1351,6 +1351,11 @@ void AggExprEmitter::VisitAbstractConditionalOperator(
13511351
assert(!UnimplementedFeature::incrementProfileCounter());
13521352
}
13531353

1354+
void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
1355+
CGF.buildIgnoredExpr(E->getLHS());
1356+
Visit(E->getRHS());
1357+
}
1358+
13541359
//===----------------------------------------------------------------------===//
13551360
// Helpers and dispatcher
13561361
//===----------------------------------------------------------------------===//

clang/test/CIR/CodeGen/struct-comma.c

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fclangir -emit-cir %s -o %t.cir
2+
// RUN: FileCheck --input-file=%t.cir %s
3+
4+
struct AA {int a, b;} x;
5+
extern int r(void);
6+
void a(struct AA* b) {*b = (r(), x);}
7+
8+
// CHECK-LABEL: @a
9+
// CHECK: %[[ADDR:.*]] = cir.alloca {{.*}} ["b"
10+
// CHECK: cir.store {{.*}}, %[[ADDR]]
11+
// CHECK: %[[LOAD:.*]] = cir.load deref %[[ADDR]]
12+
// CHECK: cir.call @r
13+
// CHECK: %[[GADDR:.*]] = cir.get_global @x
14+
// CHECK: cir.copy %[[GADDR]] to %[[LOAD]]

0 commit comments

Comments
 (0)