Skip to content

Commit 0d1fb2e

Browse files
authored
Merge pull request #101 from czgdp1807/struct_02
Ported ``integration_tests/structs_04.py`` from LPython and improve LC to compile it
2 parents edec429 + 2266865 commit 0d1fb2e

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed

integration_tests/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ RUN(NAME struct_02.cpp LABELS gcc llvm NOFAST)
214214
RUN(NAME struct_03.cpp LABELS gcc llvm NOFAST)
215215
RUN(NAME struct_04.cpp LABELS gcc llvm NOFAST)
216216
RUN(NAME struct_05.cpp LABELS gcc llvm NOFAST)
217+
RUN(NAME struct_06.cpp LABELS gcc llvm NOFAST)
217218

218219
RUN(NAME pointer_01.cpp LABELS gcc)
219220
RUN(NAME pointer_02.cpp LABELS gcc)

integration_tests/struct_06.cpp

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
}

src/lc/clang_ast_to_asr.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,9 @@ class ClangASTtoASRVisitor: public clang::RecursiveASTVisitor<ClangASTtoASRVisit
504504
if( init_expr->getStmtClass() == clang::Stmt::StmtClass::InitListExprClass ) {
505505
init_expr = static_cast<clang::InitListExpr*>(init_expr)->getInit(0);
506506
}
507+
if( init_expr->getStmtClass() == clang::Stmt::StmtClass::CXXConstructExprClass ) {
508+
init_expr = static_cast<clang::CXXConstructExpr*>(init_expr)->getArg(0);
509+
}
507510
if( init_expr->getStmtClass() != clang::Stmt::StmtClass::ImplicitCastExprClass ||
508511
static_cast<clang::ImplicitCastExpr*>(init_expr)->getSubExpr()->getStmtClass() !=
509512
clang::Stmt::StmtClass::DeclRefExprClass ) {

0 commit comments

Comments
 (0)