File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
259
259
E->getType ());
260
260
}
261
261
262
- void VisitBinComma (const BinaryOperator *E) { llvm_unreachable ( " NYI " ); }
262
+ void VisitBinComma (const BinaryOperator *E);
263
263
void VisitBinCmp (const BinaryOperator *E);
264
264
void VisitCXXRewrittenBinaryOperator (CXXRewrittenBinaryOperator *E) {
265
265
llvm_unreachable (" NYI" );
@@ -1351,6 +1351,11 @@ void AggExprEmitter::VisitAbstractConditionalOperator(
1351
1351
assert (!UnimplementedFeature::incrementProfileCounter ());
1352
1352
}
1353
1353
1354
+ void AggExprEmitter::VisitBinComma (const BinaryOperator *E) {
1355
+ CGF.buildIgnoredExpr (E->getLHS ());
1356
+ Visit (E->getRHS ());
1357
+ }
1358
+
1354
1359
// ===----------------------------------------------------------------------===//
1355
1360
// Helpers and dispatcher
1356
1361
// ===----------------------------------------------------------------------===//
Original file line number Diff line number Diff line change
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]]
You can’t perform that action at this time.
0 commit comments