Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions integration_tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -684,11 +684,11 @@ RUN(NAME test_unary_op_01 LABELS cpython llvm llvm_jit c) # unary minus
RUN(NAME test_unary_op_02 LABELS cpython llvm llvm_jit c) # unary plus
RUN(NAME test_unary_op_03 LABELS cpython llvm llvm_jit c wasm) # unary bitinvert
RUN(NAME test_unary_op_04 LABELS cpython llvm llvm_jit c) # unary bitinvert
# RUN(NAME test_unary_op_05 LABELS cpython llvm llvm_jit c) # unsigned unary minus, plus
# RUN(NAME test_unary_op_06 LABELS cpython llvm llvm_jit c) # unsigned unary bitnot
# RUN(NAME test_unsigned_01 LABELS cpython llvm llvm_jit c) # unsigned bitshift left, right
# RUN(NAME test_unsigned_02 LABELS cpython llvm llvm_jit c)
# RUN(NAME test_unsigned_03 LABELS cpython llvm llvm_jit c)
RUN(NAME test_unary_op_05 LABELS cpython llvm llvm_jit c) # unsigned unary minus, plus
RUN(NAME test_unary_op_06 LABELS cpython llvm llvm_jit c) # unsigned unary bitnot
RUN(NAME test_unsigned_01 LABELS cpython llvm llvm_jit c) # unsigned bitshift left, right
RUN(NAME test_unsigned_02 LABELS cpython llvm llvm_jit c)
RUN(NAME test_unsigned_03 LABELS cpython llvm llvm_jit c)
RUN(NAME test_bool_binop LABELS cpython llvm llvm_jit c)
RUN(NAME test_issue_518 LABELS cpython llvm llvm_jit c NOFAST)
RUN(NAME structs_01 LABELS cpython llvm llvm_jit c)
Expand Down
2 changes: 1 addition & 1 deletion libasr
Submodule libasr updated 42 files
+12 −0 integration_tests/CMakeLists.txt
+21 −0 integration_tests/arrays_95.f90
+5 −2 integration_tests/boz_01.f90
+21 −0 integration_tests/class_58.f90
+35 −0 integration_tests/intrinsics_391.f90
+70 −0 integration_tests/openmp_63.f90
+79 −0 integration_tests/openmp_64.f90
+116 −0 integration_tests/openmp_65.f90
+24 −0 integration_tests/openmp_66.f90
+121 −0 integration_tests/openmp_67.f90
+86 −0 integration_tests/openmp_68.f90
+24 −0 integration_tests/openmp_69.f90
+4 −0 integration_tests/operator_overloading_17.f90
+64 −0 integration_tests/operator_overloading_19.f90
+28 −0 integration_tests/submodule_07.f90
+64 −11 src/lfortran/semantics/ast_body_visitor.cpp
+30 −16 src/lfortran/semantics/ast_common_visitor.h
+1 −2 src/lfortran/semantics/ast_symboltable_visitor.cpp
+1 −1 src/libasr/ASR.asdl
+7 −2 src/libasr/asr_utils.cpp
+15 −2 src/libasr/codegen/asr_to_llvm.cpp
+269 −12 src/libasr/pass/openmp.cpp
+5 −1 src/libasr/pass/pass_array_by_data.cpp
+13 −4 src/libasr/pass/pass_utils.h
+40 −1 src/libasr/runtime/lfortran_intrinsics.c
+73 −0 src/runtime/openmp/omp_lib.f90
+2 −2 tests/reference/asr-boz_01-dedad59.json
+85 −1 tests/reference/asr-boz_01-dedad59.stdout
+1 −1 tests/reference/asr_openmp-openmp_37-2c7ae83.json
+1,630 −84 tests/reference/asr_openmp-openmp_37-2c7ae83.stdout
+1 −1 tests/reference/asr_openmp-openmp_38-2731560.json
+1,630 −84 tests/reference/asr_openmp-openmp_38-2731560.stdout
+1 −1 tests/reference/asr_openmp-openmp_39-aaf2ba8.json
+1,630 −84 tests/reference/asr_openmp-openmp_39-aaf2ba8.stdout
+1 −1 tests/reference/asr_openmp-openmp_44-1c0f6fe.json
+1,630 −84 tests/reference/asr_openmp-openmp_44-1c0f6fe.stdout
+1 −1 tests/reference/asr_openmp-openmp_45-1c0e790.json
+1,630 −84 tests/reference/asr_openmp-openmp_45-1c0e790.stdout
+1 −1 tests/reference/asr_openmp-openmp_46-1b93fa8.json
+1,630 −84 tests/reference/asr_openmp-openmp_46-1b93fa8.stdout
+2 −2 tests/reference/llvm-boz_01-def9db5.json
+14 −2 tests/reference/llvm-boz_01-def9db5.stdout
Loading