File tree 3 files changed +64
-0
lines changed
3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,7 @@ RUN(NAME struct_02.cpp LABELS gcc llvm NOFAST)
214
214
RUN(NAME struct_03.cpp LABELS gcc llvm NOFAST)
215
215
RUN(NAME struct_04.cpp LABELS gcc llvm NOFAST)
216
216
RUN(NAME struct_05.cpp LABELS gcc llvm NOFAST)
217
+ RUN(NAME struct_06.cpp LABELS gcc llvm NOFAST)
217
218
218
219
RUN(NAME pointer_01.cpp LABELS gcc)
219
220
RUN(NAME pointer_02.cpp LABELS gcc)
Original file line number Diff line number Diff line change
1
+ #include < iostream>
2
+
3
+ struct A_t {
4
+ float y;
5
+ int32_t x;
6
+ };
7
+
8
+ struct B_t {
9
+ int32_t z;
10
+ struct A_t a;
11
+ };
12
+
13
+ void init_A_t (A_t& a, float y_, int32_t x_) {
14
+ a.y = y_;
15
+ a.x = x_;
16
+ }
17
+
18
+ void init_B_t (B_t& b, int32_t z_, struct A_t a_) {
19
+ b.z = z_;
20
+ b.a = a_;
21
+ }
22
+
23
+ void assert (bool condition) {
24
+ if ( !condition ) {
25
+ exit (2 );
26
+ }
27
+ }
28
+
29
+ void f (const B_t& b) {
30
+ std::cout << b.z << " " << b.a .x << " " << b.a .y << std::endl;
31
+ assert ( b.z == 1 );
32
+ assert ( b.a .x == 2 );
33
+ assert ( double (b.a .y ) == 3.0 );
34
+ }
35
+
36
+ void g () {
37
+ struct A_t a1;
38
+ struct A_t a2;
39
+ struct B_t b;
40
+ init_A_t (a1, float (1.0 ), 1 );
41
+ init_A_t (a2, float (2.0 ), 2 );
42
+ init_B_t (b, 1 , a1);
43
+ b.a = a2;
44
+ b.z = 1 ;
45
+ b.a .x = 2 ;
46
+ b.a .y = float (3.0 );
47
+ assert ( a1.x == 1 );
48
+ assert ( double (a1.y ) == 1.0 );
49
+ assert ( a2.x == 2 );
50
+ assert ( double (a2.y ) == 2.0 );
51
+ f (b);
52
+ }
53
+
54
+ int main () {
55
+
56
+ g ();
57
+
58
+ return 0 ;
59
+
60
+ }
Original file line number Diff line number Diff line change @@ -504,6 +504,9 @@ class ClangASTtoASRVisitor: public clang::RecursiveASTVisitor<ClangASTtoASRVisit
504
504
if ( init_expr->getStmtClass () == clang::Stmt::StmtClass::InitListExprClass ) {
505
505
init_expr = static_cast <clang::InitListExpr*>(init_expr)->getInit (0 );
506
506
}
507
+ if ( init_expr->getStmtClass () == clang::Stmt::StmtClass::CXXConstructExprClass ) {
508
+ init_expr = static_cast <clang::CXXConstructExpr*>(init_expr)->getArg (0 );
509
+ }
507
510
if ( init_expr->getStmtClass () != clang::Stmt::StmtClass::ImplicitCastExprClass ||
508
511
static_cast <clang::ImplicitCastExpr*>(init_expr)->getSubExpr ()->getStmtClass () !=
509
512
clang::Stmt::StmtClass::DeclRefExprClass ) {
You can’t perform that action at this time.
0 commit comments