Skip to content

Commit 7da7a63

Browse files
committed
added support for cpython_sym backend
1 parent df41c67 commit 7da7a63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration_tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ RUN(NAME symbolics_04 LABELS cpython_sym c_sym)
646646
RUN(NAME symbolics_05 LABELS cpython_sym c_sym)
647647
RUN(NAME symbolics_06 LABELS cpython_sym c_sym)
648648
RUN(NAME symbolics_07 LABELS cpython_sym c_sym llvm_sym NOFAST)
649-
RUN(NAME symbolics_08 LABELS c_sym llvm_sym)
649+
RUN(NAME symbolics_08 LABELS cpython_sym c_sym llvm_sym)
650650

651651
RUN(NAME sizeof_01 LABELS llvm c
652652
EXTRAFILES sizeof_01b.c)

integration_tests/symbolics_08.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def basic_str(x: CPtr) -> str:
1616
def main0():
1717
y: i64 = i64(0)
1818
x: CPtr = empty_c_void_p()
19-
p_c_pointer(pointer(y), x)
19+
p_c_pointer(pointer(y, i64), x)
2020
basic_new_stack(x)
2121
basic_const_pi(x)
2222
s: str = basic_str(x)

0 commit comments

Comments
 (0)