├── .github └── workflows │ └── push.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── c.g ├── rcc.c ├── rcc.h ├── rcc_cpp.c ├── rcc_parser.c ├── rcc_scanner.c ├── rcc_semantic.c ├── rcc_stdinc.c ├── tests ├── cpp-paul │ ├── 01.test │ ├── 02.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ └── README ├── cpp │ ├── ifdef-001.test │ ├── ifdef-002.test │ ├── ifdef-003.test │ ├── ifdef-004.test │ ├── inc1 │ │ ├── include-001.h │ │ └── include_next-001.h │ ├── inc2 │ │ ├── include-001.h │ │ └── include_next-001.h │ ├── include-001.test │ ├── include_next-001.test │ ├── macro-001.test │ ├── macro-002.test │ ├── macro-003.test │ ├── macro-004.test │ ├── macro-005.test │ ├── macro-006.test │ ├── macro-007.test │ ├── macro-008.test │ ├── macro-009.test │ ├── macro-010.test │ ├── macro-011.test │ ├── macro-012.test │ ├── macro-013.test │ ├── macro-014.test │ ├── macro-015.test │ ├── macro-016.test │ └── macro-017.test ├── rcc │ ├── add-001.test │ ├── addr-01.test │ ├── alias-001.test │ ├── alias-002.test │ ├── alias-003.test │ ├── alias-004.test │ ├── alias-005.test │ ├── alias-006.test │ ├── alias-007.test │ ├── alias-008.test │ ├── alias-009.test │ ├── array_arg-001.test │ ├── assign-01.test │ ├── attr_mode-001.test │ ├── bool_not-001.test │ ├── break-001.test │ ├── call-001.test │ ├── call-002.test │ ├── call-003.test │ ├── call-004.test │ ├── case-001.test │ ├── case-002.test │ ├── case-003.test │ ├── case-004.test │ ├── case-005.test │ ├── case-006.test │ ├── case-007.test │ ├── case-008.test │ ├── case-009.test │ ├── case-010.test │ ├── continue-001.test │ ├── deref-01.test │ ├── duplicate_decl-001.test │ ├── duplicate_decl-002.test │ ├── duplicate_decl-003.test │ ├── duplicate_decl-004.test │ ├── duplicate_decl-005.test │ ├── duplicate_decl-006.test │ ├── duplicate_decl-007.test │ ├── duplicate_decl-008.test │ ├── duplicate_decl-009.test │ ├── duplicate_decl-010.test │ ├── duplicate_decl-011.test │ ├── duplicate_decl-012.test │ ├── duplicate_decl-013.test │ ├── duplicate_decl-014.test │ ├── duplicate_decl-015.test │ ├── enum-001.test │ ├── enum-002.test │ ├── enum-003.test │ ├── for-001.test │ ├── for-002.test │ ├── for-003.test │ ├── generic-001.test │ ├── generic-002.test │ ├── generic-003.test │ ├── generic-004.test │ ├── generic-005.test │ ├── if-001.test │ ├── incomplete-001.test │ ├── init-001.test │ ├── init-002.test │ ├── init-003.test │ ├── init-004.test │ ├── init-005.test │ ├── init-006.test │ ├── init-007.test │ ├── init-008.test │ ├── init-009.test │ ├── init-010.test │ ├── init-011.test │ ├── init-012.test │ ├── init-013.test │ ├── init-014.test │ ├── init-015.test │ ├── init-016.test │ ├── init-017.test │ ├── init-018.test │ ├── init-019.test │ ├── init-020.test │ ├── init-021.test │ ├── init-030.test │ ├── init-031.test │ ├── init-032.test │ ├── init-033.test │ ├── label-001.test │ ├── label-002.test │ ├── label-003.test │ ├── label-004.test │ ├── label-005.test │ ├── label-006.test │ ├── label-007.test │ ├── label-008.test │ ├── label-009.test │ ├── noreturn-002.test │ ├── noreturn-003.test │ ├── not-001.test │ ├── parse-01.test │ ├── post_inc-01.test │ ├── pre_inc-01.test │ ├── pre_inc-02.test │ ├── return-001.test │ ├── return-002.test │ ├── return-010.test │ ├── return-011.test │ ├── return-012.test │ ├── return-013.test │ ├── sizeof-001.test │ ├── sizeof-002.test │ ├── static_assert-001.test │ ├── static_assert-002.test │ ├── static_assert-003.test │ ├── storage_class-001.test │ ├── storage_class-002.test │ ├── storage_class-003.test │ ├── storage_class-004.test │ ├── storage_class-005.test │ ├── storage_class-006.test │ ├── storage_class-007.test │ ├── storage_class-008.test │ ├── type_check-01.test │ ├── type_check-02.test │ ├── type_check-03.test │ ├── type_check-04.test │ ├── type_check-05.test │ ├── type_check-06.test │ ├── type_check-07.test │ ├── type_check-08.test │ ├── type_check-09.test │ ├── type_check-10.test │ ├── type_check-11.test │ ├── type_qualifiers-001.test │ ├── type_qualifiers-002.test │ ├── type_qualifiers-003.test │ ├── type_qualifiers-004.test │ ├── type_qualifiers-005.test │ ├── type_qualifiers-006.test │ ├── type_specifiers-001.test │ ├── type_specifiers-002.test │ ├── type_specifiers-003.test │ ├── typeof-001.test │ ├── vla-001.test │ ├── vla-002.test │ ├── vla-003.test │ ├── vla-004.test │ ├── vla-005.test │ ├── vla-006.test │ ├── vla-007.test │ ├── vla-008.test │ └── vla-009.test └── tinycc │ ├── COPYING │ ├── README │ ├── pp │ ├── 01.test │ ├── 02.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ ├── 14.test │ ├── 15.test │ ├── 16.test │ ├── 17.test │ ├── 18.test │ ├── 19.test │ ├── 20.test │ ├── 21.test │ ├── 22.test │ ├── 23.test │ ├── 24.test │ ├── 25.test │ └── pp-counter.test │ └── tests2 │ ├── 000_assignment.test │ ├── 001_comment.test │ ├── 002_printf.test │ ├── 003_struct.test │ ├── 004_for.test │ ├── 005_array.test │ ├── 006_case.test │ ├── 007_function.test │ ├── 008_while.test │ ├── 009_do_while.test │ ├── 010_pointer.test │ ├── 011_precedence.test │ ├── 012_hashdefine.test │ ├── 013_integer_literals.test │ ├── 014_if.test │ ├── 015_recursion.test │ ├── 016_nesting.test │ ├── 017_enum.test │ ├── 018_include.test │ ├── 019_pointer_arithmetic.test │ ├── 020_pointer_comparison.test │ ├── 021_char_array.test │ ├── 022_floating_point.test │ ├── 023_type_coercion.test │ ├── 024_math_library.test │ ├── 025_quicksort.test │ ├── 026_character_constants.test │ ├── 027_sizeof.test │ ├── 028_strings.test │ ├── 029_array_address.test │ ├── 030_hanoi.test │ ├── 031_args.test │ ├── 032_led.test │ ├── 033_ternary_op.test │ ├── 034_array_assignment.test │ ├── 035_sizeof.test │ ├── 036_array_initialisers.test │ ├── 037_sprintf.test │ ├── 038_multiple_array_index.test │ ├── 039_typedef.test │ ├── 040_stdio.test │ ├── 041_hashif.test │ ├── 042_function_pointer.test │ ├── 043_void_param.test │ ├── 044_scoped_declarations.test │ ├── 045_empty_for.test │ ├── 046_grep.test │ ├── 047_switch_return.test │ ├── 048_nested_break.test │ ├── 049_bracket_evaluation.test │ ├── 050_logical_second_arg.test │ ├── 051_static.test │ ├── 052_unnamed_enum.test │ ├── 054_goto.test │ ├── 055_lshift_type.test │ ├── 060_01_errors_and_warnings.test │ ├── 060_02_errors_and_warnings.test │ ├── 060_03_errors_and_warnings.test │ ├── 060_04_errors_and_warnings.test │ ├── 060_05_errors_and_warnings.test │ ├── 060_06_errors_and_warnings.test │ ├── 060_07_errors_and_warnings.test │ ├── 060_08_errors_and_warnings.test │ ├── 060_09_errors_and_warnings.test │ ├── 060_10_errors_and_warnings.test │ ├── 060_11_errors_and_warnings.test │ ├── 060_12_errors_and_warnings.test │ ├── 060_13_errors_and_warnings.test │ ├── 060_14_errors_and_warnings.test │ ├── 060_15_errors_and_warnings.test │ ├── 060_16_errors_and_warnings.test │ ├── 060_17_errors_and_warnings.test │ ├── 060_18_errors_and_warnings.test │ ├── 060_19_errors_and_warnings.test │ ├── 060_20_errors_and_warnings.test │ ├── 060_21_errors_and_warnings.test │ ├── 060_22_errors_and_warnings.test │ ├── 060_23_errors_and_warnings.test │ ├── 060_24_errors_and_warnings.test │ ├── 060_25_errors_and_warnings.test │ ├── 060_26_errors_and_warnings.test │ ├── 060_27_errors_and_warnings.test │ ├── 060_28_errors_and_warnings.test │ ├── 060_29_errors_and_warnings.test │ ├── 060_30_errors_and_warnings.test │ ├── 060_31_errors_and_warnings.test │ ├── 060_32_errors_and_warnings.test │ ├── 060_33_errors_and_warnings.test │ ├── 060_34_errors_and_warnings.test │ ├── 060_35_errors_and_warnings.test │ ├── 060_36_errors_and_warnings.test │ ├── 060_37_errors_and_warnings.test │ ├── 060_38_errors_and_warnings.test │ ├── 060_39_errors_and_warnings.test │ ├── 060_40_errors_and_warnings.test │ ├── 060_41_errors_and_warnings.test │ ├── 060_42_errors_and_warnings.test │ ├── 060_43_errors_and_warnings.test │ ├── 060_44_errors_and_warnings.test │ ├── 060_45_errors_and_warnings.test │ ├── 060_46_errors_and_warnings.test │ ├── 060_47_errors_and_warnings.test │ ├── 060_48_errors_and_warnings.test │ ├── 060_49_errors_and_warnings.test │ ├── 060_50_errors_and_warnings.test │ ├── 060_51_errors_and_warnings.test │ ├── 060_52_errors_and_warnings.test │ ├── 060_53_errors_and_warnings.test │ ├── 060_54_errors_and_warnings.test │ ├── 060_55_errors_and_warnings.test │ ├── 060_56_errors_and_warnings.test │ ├── 060_57_errors_and_warnings.test │ ├── 060_58_errors_and_warnings.test │ ├── 060_59_errors_and_warnings.test │ ├── 060_60_errors_and_warnings.test │ ├── 060_61_errors_and_warnings.test │ ├── 060_62_errors_and_warnings.test │ ├── 060_63_errors_and_warnings.test │ ├── 060_64_errors_and_warnings.test │ ├── 060_65_errors_and_warnings.test │ ├── 060_66_errors_and_warnings.test │ ├── 060_67_errors_and_warnings.test │ ├── 060_68_errors_and_warnings.test │ ├── 060_69_errors_and_warnings.test │ ├── 060_70_errors_and_warnings.test │ ├── 060_71_errors_and_warnings.test │ ├── 060_72_errors_and_warnings.test │ ├── 061_integers.test │ ├── 064_macro_nesting.test │ ├── 067_macro_concat.test │ ├── 070_floating_point_literals.test │ ├── 071_macro_empty_arg.test │ ├── 072_long_long_constant.test │ ├── 073_arm64.test │ ├── 075_array_in_struct_init.test │ ├── 076_dollars_in_identifiers.test │ ├── 077_push_pop_macro.test │ ├── 078_vla_label.test │ ├── 079_vla_continue.test │ ├── 080_flexarray.test │ ├── 081_types.test │ ├── 082_attribs_position.test │ ├── 083_utf8_in_identifiers.test │ ├── 084_hex-float.test │ ├── 085_asm-outside-function.test │ ├── 086_memory-model.test │ ├── 087_dead_code.test │ ├── 088_codeopt.test │ ├── 089_nocode_wanted.test │ ├── 090_struct-init.test │ ├── 091_ptr_longlong_arith32.test │ ├── 092_enum_bitfield.test │ ├── 093_integer_promotion.test │ ├── 094_generic.test │ ├── 095_bitfields.test │ ├── 095_bitfields_ms.test │ ├── 096_01_nodata_wanted.test │ ├── 096_02_nodata_wanted.test │ ├── 096_03_nodata_wanted.test │ ├── 096_04_nodata_wanted.test │ ├── 096_05_nodata_wanted.test │ ├── 096_06_nodata_wanted.test │ ├── 096_07_nodata_wanted.test │ ├── 097_utf8_string_literal.test │ ├── 098_al_ax_extend.test │ ├── 099_fastcall.test │ ├── 100_c99array-decls.test │ ├── 101_cleanup.test │ ├── 102_alignas.test │ ├── 103_implicit_memmove.test │ ├── 104_inline.test │ ├── 105_local_extern.test │ ├── 106_versym.test │ ├── 107_stack_safe.test │ ├── 108_constructor.test │ ├── 109_float_struct_calling.test │ ├── 110_average.test │ ├── 111_conversion.test │ ├── 114_bound_signal.test │ ├── 115_bound_setjmp.test │ ├── 116_bound_setjmp2.test │ ├── 117_builtins.test │ ├── 118_switch.test │ ├── 119_random_stuff.test │ ├── 120_alias.test │ ├── 121_struct_return.test │ ├── 122_vla_reuse.test │ ├── 123_vla_bug.test │ ├── 127_asm_goto.test │ ├── 128_run_atexit.test │ ├── 129_scopes.test │ ├── 130_large_argument.test │ ├── 131_return_struct_in_reg.test │ ├── 132_bound_test.test │ ├── LICENSE │ └── inc │ ├── 018_include.h │ ├── 018_include2.h │ ├── 104_inline.c │ └── 120_alias.c └── tools └── tester.c /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/TODO -------------------------------------------------------------------------------- /c.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/c.g -------------------------------------------------------------------------------- /rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc.c -------------------------------------------------------------------------------- /rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc.h -------------------------------------------------------------------------------- /rcc_cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc_cpp.c -------------------------------------------------------------------------------- /rcc_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc_parser.c -------------------------------------------------------------------------------- /rcc_scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc_scanner.c -------------------------------------------------------------------------------- /rcc_semantic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc_semantic.c -------------------------------------------------------------------------------- /rcc_stdinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/rcc_stdinc.c -------------------------------------------------------------------------------- /tests/cpp-paul/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/01.test -------------------------------------------------------------------------------- /tests/cpp-paul/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/02.test -------------------------------------------------------------------------------- /tests/cpp-paul/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/03.test -------------------------------------------------------------------------------- /tests/cpp-paul/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/04.test -------------------------------------------------------------------------------- /tests/cpp-paul/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/05.test -------------------------------------------------------------------------------- /tests/cpp-paul/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/06.test -------------------------------------------------------------------------------- /tests/cpp-paul/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/07.test -------------------------------------------------------------------------------- /tests/cpp-paul/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/08.test -------------------------------------------------------------------------------- /tests/cpp-paul/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/09.test -------------------------------------------------------------------------------- /tests/cpp-paul/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/10.test -------------------------------------------------------------------------------- /tests/cpp-paul/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/11.test -------------------------------------------------------------------------------- /tests/cpp-paul/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/12.test -------------------------------------------------------------------------------- /tests/cpp-paul/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp-paul/13.test -------------------------------------------------------------------------------- /tests/cpp-paul/README: -------------------------------------------------------------------------------- 1 | Tests from Paul Mensonides's "How macro expansion works" message. -------------------------------------------------------------------------------- /tests/cpp/ifdef-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/ifdef-001.test -------------------------------------------------------------------------------- /tests/cpp/ifdef-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/ifdef-002.test -------------------------------------------------------------------------------- /tests/cpp/ifdef-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/ifdef-003.test -------------------------------------------------------------------------------- /tests/cpp/ifdef-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/ifdef-004.test -------------------------------------------------------------------------------- /tests/cpp/inc1/include-001.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE_001_INC1 1 2 | -------------------------------------------------------------------------------- /tests/cpp/inc1/include_next-001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/inc1/include_next-001.h -------------------------------------------------------------------------------- /tests/cpp/inc2/include-001.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE_001_INC2 1 2 | -------------------------------------------------------------------------------- /tests/cpp/inc2/include_next-001.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE_001_INC2 1 2 | -------------------------------------------------------------------------------- /tests/cpp/include-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/include-001.test -------------------------------------------------------------------------------- /tests/cpp/include_next-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/include_next-001.test -------------------------------------------------------------------------------- /tests/cpp/macro-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-001.test -------------------------------------------------------------------------------- /tests/cpp/macro-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-002.test -------------------------------------------------------------------------------- /tests/cpp/macro-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-003.test -------------------------------------------------------------------------------- /tests/cpp/macro-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-004.test -------------------------------------------------------------------------------- /tests/cpp/macro-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-005.test -------------------------------------------------------------------------------- /tests/cpp/macro-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-006.test -------------------------------------------------------------------------------- /tests/cpp/macro-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-007.test -------------------------------------------------------------------------------- /tests/cpp/macro-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-008.test -------------------------------------------------------------------------------- /tests/cpp/macro-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-009.test -------------------------------------------------------------------------------- /tests/cpp/macro-010.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-010.test -------------------------------------------------------------------------------- /tests/cpp/macro-011.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-011.test -------------------------------------------------------------------------------- /tests/cpp/macro-012.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-012.test -------------------------------------------------------------------------------- /tests/cpp/macro-013.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-013.test -------------------------------------------------------------------------------- /tests/cpp/macro-014.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-014.test -------------------------------------------------------------------------------- /tests/cpp/macro-015.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-015.test -------------------------------------------------------------------------------- /tests/cpp/macro-016.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-016.test -------------------------------------------------------------------------------- /tests/cpp/macro-017.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/cpp/macro-017.test -------------------------------------------------------------------------------- /tests/rcc/add-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/add-001.test -------------------------------------------------------------------------------- /tests/rcc/addr-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/addr-01.test -------------------------------------------------------------------------------- /tests/rcc/alias-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-001.test -------------------------------------------------------------------------------- /tests/rcc/alias-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-002.test -------------------------------------------------------------------------------- /tests/rcc/alias-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-003.test -------------------------------------------------------------------------------- /tests/rcc/alias-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-004.test -------------------------------------------------------------------------------- /tests/rcc/alias-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-005.test -------------------------------------------------------------------------------- /tests/rcc/alias-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-006.test -------------------------------------------------------------------------------- /tests/rcc/alias-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-007.test -------------------------------------------------------------------------------- /tests/rcc/alias-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-008.test -------------------------------------------------------------------------------- /tests/rcc/alias-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/alias-009.test -------------------------------------------------------------------------------- /tests/rcc/array_arg-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/array_arg-001.test -------------------------------------------------------------------------------- /tests/rcc/assign-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/assign-01.test -------------------------------------------------------------------------------- /tests/rcc/attr_mode-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/attr_mode-001.test -------------------------------------------------------------------------------- /tests/rcc/bool_not-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/bool_not-001.test -------------------------------------------------------------------------------- /tests/rcc/break-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/break-001.test -------------------------------------------------------------------------------- /tests/rcc/call-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/call-001.test -------------------------------------------------------------------------------- /tests/rcc/call-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/call-002.test -------------------------------------------------------------------------------- /tests/rcc/call-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/call-003.test -------------------------------------------------------------------------------- /tests/rcc/call-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/call-004.test -------------------------------------------------------------------------------- /tests/rcc/case-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-001.test -------------------------------------------------------------------------------- /tests/rcc/case-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-002.test -------------------------------------------------------------------------------- /tests/rcc/case-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-003.test -------------------------------------------------------------------------------- /tests/rcc/case-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-004.test -------------------------------------------------------------------------------- /tests/rcc/case-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-005.test -------------------------------------------------------------------------------- /tests/rcc/case-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-006.test -------------------------------------------------------------------------------- /tests/rcc/case-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-007.test -------------------------------------------------------------------------------- /tests/rcc/case-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-008.test -------------------------------------------------------------------------------- /tests/rcc/case-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-009.test -------------------------------------------------------------------------------- /tests/rcc/case-010.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/case-010.test -------------------------------------------------------------------------------- /tests/rcc/continue-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/continue-001.test -------------------------------------------------------------------------------- /tests/rcc/deref-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/deref-01.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-001.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-002.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-003.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-004.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-005.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-006.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-007.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-008.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-009.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-010.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-010.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-011.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-011.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-012.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-012.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-013.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-013.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-014.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-014.test -------------------------------------------------------------------------------- /tests/rcc/duplicate_decl-015.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/duplicate_decl-015.test -------------------------------------------------------------------------------- /tests/rcc/enum-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/enum-001.test -------------------------------------------------------------------------------- /tests/rcc/enum-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/enum-002.test -------------------------------------------------------------------------------- /tests/rcc/enum-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/enum-003.test -------------------------------------------------------------------------------- /tests/rcc/for-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/for-001.test -------------------------------------------------------------------------------- /tests/rcc/for-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/for-002.test -------------------------------------------------------------------------------- /tests/rcc/for-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/for-003.test -------------------------------------------------------------------------------- /tests/rcc/generic-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/generic-001.test -------------------------------------------------------------------------------- /tests/rcc/generic-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/generic-002.test -------------------------------------------------------------------------------- /tests/rcc/generic-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/generic-003.test -------------------------------------------------------------------------------- /tests/rcc/generic-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/generic-004.test -------------------------------------------------------------------------------- /tests/rcc/generic-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/generic-005.test -------------------------------------------------------------------------------- /tests/rcc/if-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/if-001.test -------------------------------------------------------------------------------- /tests/rcc/incomplete-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/incomplete-001.test -------------------------------------------------------------------------------- /tests/rcc/init-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-001.test -------------------------------------------------------------------------------- /tests/rcc/init-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-002.test -------------------------------------------------------------------------------- /tests/rcc/init-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-003.test -------------------------------------------------------------------------------- /tests/rcc/init-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-004.test -------------------------------------------------------------------------------- /tests/rcc/init-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-005.test -------------------------------------------------------------------------------- /tests/rcc/init-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-006.test -------------------------------------------------------------------------------- /tests/rcc/init-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-007.test -------------------------------------------------------------------------------- /tests/rcc/init-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-008.test -------------------------------------------------------------------------------- /tests/rcc/init-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-009.test -------------------------------------------------------------------------------- /tests/rcc/init-010.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-010.test -------------------------------------------------------------------------------- /tests/rcc/init-011.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-011.test -------------------------------------------------------------------------------- /tests/rcc/init-012.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-012.test -------------------------------------------------------------------------------- /tests/rcc/init-013.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-013.test -------------------------------------------------------------------------------- /tests/rcc/init-014.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-014.test -------------------------------------------------------------------------------- /tests/rcc/init-015.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-015.test -------------------------------------------------------------------------------- /tests/rcc/init-016.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-016.test -------------------------------------------------------------------------------- /tests/rcc/init-017.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-017.test -------------------------------------------------------------------------------- /tests/rcc/init-018.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-018.test -------------------------------------------------------------------------------- /tests/rcc/init-019.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-019.test -------------------------------------------------------------------------------- /tests/rcc/init-020.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-020.test -------------------------------------------------------------------------------- /tests/rcc/init-021.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-021.test -------------------------------------------------------------------------------- /tests/rcc/init-030.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-030.test -------------------------------------------------------------------------------- /tests/rcc/init-031.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-031.test -------------------------------------------------------------------------------- /tests/rcc/init-032.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-032.test -------------------------------------------------------------------------------- /tests/rcc/init-033.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/init-033.test -------------------------------------------------------------------------------- /tests/rcc/label-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-001.test -------------------------------------------------------------------------------- /tests/rcc/label-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-002.test -------------------------------------------------------------------------------- /tests/rcc/label-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-003.test -------------------------------------------------------------------------------- /tests/rcc/label-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-004.test -------------------------------------------------------------------------------- /tests/rcc/label-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-005.test -------------------------------------------------------------------------------- /tests/rcc/label-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-006.test -------------------------------------------------------------------------------- /tests/rcc/label-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-007.test -------------------------------------------------------------------------------- /tests/rcc/label-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-008.test -------------------------------------------------------------------------------- /tests/rcc/label-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/label-009.test -------------------------------------------------------------------------------- /tests/rcc/noreturn-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/noreturn-002.test -------------------------------------------------------------------------------- /tests/rcc/noreturn-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/noreturn-003.test -------------------------------------------------------------------------------- /tests/rcc/not-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/not-001.test -------------------------------------------------------------------------------- /tests/rcc/parse-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/parse-01.test -------------------------------------------------------------------------------- /tests/rcc/post_inc-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/post_inc-01.test -------------------------------------------------------------------------------- /tests/rcc/pre_inc-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/pre_inc-01.test -------------------------------------------------------------------------------- /tests/rcc/pre_inc-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/pre_inc-02.test -------------------------------------------------------------------------------- /tests/rcc/return-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/return-001.test -------------------------------------------------------------------------------- /tests/rcc/return-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/return-002.test -------------------------------------------------------------------------------- /tests/rcc/return-010.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/return-010.test -------------------------------------------------------------------------------- /tests/rcc/return-011.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/return-011.test -------------------------------------------------------------------------------- /tests/rcc/return-012.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/return-012.test -------------------------------------------------------------------------------- /tests/rcc/return-013.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/return-013.test -------------------------------------------------------------------------------- /tests/rcc/sizeof-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/sizeof-001.test -------------------------------------------------------------------------------- /tests/rcc/sizeof-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/sizeof-002.test -------------------------------------------------------------------------------- /tests/rcc/static_assert-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/static_assert-001.test -------------------------------------------------------------------------------- /tests/rcc/static_assert-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/static_assert-002.test -------------------------------------------------------------------------------- /tests/rcc/static_assert-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/static_assert-003.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-001.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-002.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-003.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-004.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-005.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-006.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-007.test -------------------------------------------------------------------------------- /tests/rcc/storage_class-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/storage_class-008.test -------------------------------------------------------------------------------- /tests/rcc/type_check-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-01.test -------------------------------------------------------------------------------- /tests/rcc/type_check-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-02.test -------------------------------------------------------------------------------- /tests/rcc/type_check-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-03.test -------------------------------------------------------------------------------- /tests/rcc/type_check-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-04.test -------------------------------------------------------------------------------- /tests/rcc/type_check-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-05.test -------------------------------------------------------------------------------- /tests/rcc/type_check-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-06.test -------------------------------------------------------------------------------- /tests/rcc/type_check-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-07.test -------------------------------------------------------------------------------- /tests/rcc/type_check-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-08.test -------------------------------------------------------------------------------- /tests/rcc/type_check-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-09.test -------------------------------------------------------------------------------- /tests/rcc/type_check-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-10.test -------------------------------------------------------------------------------- /tests/rcc/type_check-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_check-11.test -------------------------------------------------------------------------------- /tests/rcc/type_qualifiers-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_qualifiers-001.test -------------------------------------------------------------------------------- /tests/rcc/type_qualifiers-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_qualifiers-002.test -------------------------------------------------------------------------------- /tests/rcc/type_qualifiers-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_qualifiers-003.test -------------------------------------------------------------------------------- /tests/rcc/type_qualifiers-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_qualifiers-004.test -------------------------------------------------------------------------------- /tests/rcc/type_qualifiers-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_qualifiers-005.test -------------------------------------------------------------------------------- /tests/rcc/type_qualifiers-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_qualifiers-006.test -------------------------------------------------------------------------------- /tests/rcc/type_specifiers-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_specifiers-001.test -------------------------------------------------------------------------------- /tests/rcc/type_specifiers-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_specifiers-002.test -------------------------------------------------------------------------------- /tests/rcc/type_specifiers-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/type_specifiers-003.test -------------------------------------------------------------------------------- /tests/rcc/typeof-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/typeof-001.test -------------------------------------------------------------------------------- /tests/rcc/vla-001.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-001.test -------------------------------------------------------------------------------- /tests/rcc/vla-002.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-002.test -------------------------------------------------------------------------------- /tests/rcc/vla-003.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-003.test -------------------------------------------------------------------------------- /tests/rcc/vla-004.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-004.test -------------------------------------------------------------------------------- /tests/rcc/vla-005.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-005.test -------------------------------------------------------------------------------- /tests/rcc/vla-006.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-006.test -------------------------------------------------------------------------------- /tests/rcc/vla-007.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-007.test -------------------------------------------------------------------------------- /tests/rcc/vla-008.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-008.test -------------------------------------------------------------------------------- /tests/rcc/vla-009.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/rcc/vla-009.test -------------------------------------------------------------------------------- /tests/tinycc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/COPYING -------------------------------------------------------------------------------- /tests/tinycc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/README -------------------------------------------------------------------------------- /tests/tinycc/pp/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/01.test -------------------------------------------------------------------------------- /tests/tinycc/pp/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/02.test -------------------------------------------------------------------------------- /tests/tinycc/pp/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/03.test -------------------------------------------------------------------------------- /tests/tinycc/pp/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/04.test -------------------------------------------------------------------------------- /tests/tinycc/pp/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/05.test -------------------------------------------------------------------------------- /tests/tinycc/pp/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/06.test -------------------------------------------------------------------------------- /tests/tinycc/pp/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/07.test -------------------------------------------------------------------------------- /tests/tinycc/pp/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/08.test -------------------------------------------------------------------------------- /tests/tinycc/pp/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/09.test -------------------------------------------------------------------------------- /tests/tinycc/pp/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/10.test -------------------------------------------------------------------------------- /tests/tinycc/pp/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/11.test -------------------------------------------------------------------------------- /tests/tinycc/pp/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/12.test -------------------------------------------------------------------------------- /tests/tinycc/pp/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/13.test -------------------------------------------------------------------------------- /tests/tinycc/pp/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/14.test -------------------------------------------------------------------------------- /tests/tinycc/pp/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/15.test -------------------------------------------------------------------------------- /tests/tinycc/pp/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/16.test -------------------------------------------------------------------------------- /tests/tinycc/pp/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/17.test -------------------------------------------------------------------------------- /tests/tinycc/pp/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/18.test -------------------------------------------------------------------------------- /tests/tinycc/pp/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/19.test -------------------------------------------------------------------------------- /tests/tinycc/pp/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/20.test -------------------------------------------------------------------------------- /tests/tinycc/pp/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/21.test -------------------------------------------------------------------------------- /tests/tinycc/pp/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/22.test -------------------------------------------------------------------------------- /tests/tinycc/pp/23.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/23.test -------------------------------------------------------------------------------- /tests/tinycc/pp/24.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/24.test -------------------------------------------------------------------------------- /tests/tinycc/pp/25.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/25.test -------------------------------------------------------------------------------- /tests/tinycc/pp/pp-counter.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/pp/pp-counter.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/000_assignment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/000_assignment.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/001_comment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/001_comment.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/002_printf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/002_printf.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/003_struct.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/003_struct.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/004_for.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/004_for.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/005_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/005_array.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/006_case.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/006_case.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/007_function.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/007_function.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/008_while.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/008_while.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/009_do_while.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/009_do_while.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/010_pointer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/010_pointer.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/011_precedence.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/011_precedence.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/012_hashdefine.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/012_hashdefine.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/013_integer_literals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/013_integer_literals.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/014_if.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/014_if.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/015_recursion.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/015_recursion.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/016_nesting.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/016_nesting.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/017_enum.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/017_enum.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/018_include.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/018_include.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/019_pointer_arithmetic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/019_pointer_arithmetic.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/020_pointer_comparison.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/020_pointer_comparison.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/021_char_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/021_char_array.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/022_floating_point.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/022_floating_point.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/023_type_coercion.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/023_type_coercion.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/024_math_library.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/024_math_library.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/025_quicksort.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/025_quicksort.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/026_character_constants.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/026_character_constants.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/027_sizeof.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/027_sizeof.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/028_strings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/028_strings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/029_array_address.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/029_array_address.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/030_hanoi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/030_hanoi.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/031_args.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/031_args.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/032_led.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/032_led.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/033_ternary_op.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/033_ternary_op.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/034_array_assignment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/034_array_assignment.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/035_sizeof.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/035_sizeof.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/036_array_initialisers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/036_array_initialisers.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/037_sprintf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/037_sprintf.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/038_multiple_array_index.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/038_multiple_array_index.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/039_typedef.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/039_typedef.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/040_stdio.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/040_stdio.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/041_hashif.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/041_hashif.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/042_function_pointer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/042_function_pointer.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/043_void_param.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/043_void_param.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/044_scoped_declarations.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/044_scoped_declarations.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/045_empty_for.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/045_empty_for.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/046_grep.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/046_grep.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/047_switch_return.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/047_switch_return.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/048_nested_break.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/048_nested_break.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/049_bracket_evaluation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/049_bracket_evaluation.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/050_logical_second_arg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/050_logical_second_arg.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/051_static.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/051_static.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/052_unnamed_enum.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/052_unnamed_enum.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/054_goto.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/054_goto.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/055_lshift_type.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/055_lshift_type.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_01_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_01_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_02_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_02_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_03_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_03_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_04_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_04_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_05_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_05_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_06_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_06_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_07_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_07_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_08_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_08_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_09_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_09_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_10_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_10_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_11_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_11_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_12_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_12_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_13_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_13_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_14_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_14_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_15_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_15_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_16_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_16_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_17_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_17_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_18_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_18_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_19_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_19_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_20_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_20_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_21_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_21_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_22_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_22_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_23_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_23_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_24_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_24_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_25_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_25_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_26_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_26_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_27_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_27_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_28_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_28_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_29_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_29_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_30_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_30_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_31_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_31_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_32_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_32_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_33_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_33_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_34_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_34_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_35_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_35_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_36_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_36_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_37_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_37_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_38_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_38_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_39_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_39_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_40_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_40_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_41_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_41_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_42_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_42_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_43_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_43_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_44_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_44_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_45_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_45_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_46_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_46_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_47_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_47_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_48_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_48_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_49_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_49_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_50_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_50_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_51_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_51_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_52_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_52_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_53_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_53_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_54_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_54_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_55_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_55_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_56_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_56_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_57_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_57_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_58_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_58_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_59_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_59_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_60_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_60_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_61_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_61_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_62_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_62_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_63_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_63_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_64_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_64_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_65_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_65_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_66_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_66_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_67_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_67_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_68_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_68_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_69_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_69_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_70_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_70_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_71_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_71_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/060_72_errors_and_warnings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/060_72_errors_and_warnings.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/061_integers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/061_integers.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/064_macro_nesting.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/064_macro_nesting.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/067_macro_concat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/067_macro_concat.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/070_floating_point_literals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/070_floating_point_literals.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/071_macro_empty_arg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/071_macro_empty_arg.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/072_long_long_constant.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/072_long_long_constant.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/073_arm64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/073_arm64.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/075_array_in_struct_init.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/075_array_in_struct_init.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/076_dollars_in_identifiers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/076_dollars_in_identifiers.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/077_push_pop_macro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/077_push_pop_macro.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/078_vla_label.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/078_vla_label.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/079_vla_continue.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/079_vla_continue.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/080_flexarray.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/080_flexarray.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/081_types.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/081_types.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/082_attribs_position.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/082_attribs_position.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/083_utf8_in_identifiers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/083_utf8_in_identifiers.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/084_hex-float.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/084_hex-float.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/085_asm-outside-function.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/085_asm-outside-function.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/086_memory-model.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/086_memory-model.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/087_dead_code.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/087_dead_code.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/088_codeopt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/088_codeopt.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/089_nocode_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/089_nocode_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/090_struct-init.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/090_struct-init.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/091_ptr_longlong_arith32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/091_ptr_longlong_arith32.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/092_enum_bitfield.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/092_enum_bitfield.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/093_integer_promotion.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/093_integer_promotion.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/094_generic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/094_generic.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/095_bitfields.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/095_bitfields.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/095_bitfields_ms.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/095_bitfields_ms.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_01_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_01_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_02_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_02_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_03_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_03_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_04_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_04_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_05_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_05_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_06_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_06_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/096_07_nodata_wanted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/096_07_nodata_wanted.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/097_utf8_string_literal.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/097_utf8_string_literal.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/098_al_ax_extend.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/098_al_ax_extend.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/099_fastcall.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/099_fastcall.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/100_c99array-decls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/100_c99array-decls.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/101_cleanup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/101_cleanup.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/102_alignas.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/102_alignas.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/103_implicit_memmove.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/103_implicit_memmove.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/104_inline.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/104_inline.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/105_local_extern.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/105_local_extern.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/106_versym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/106_versym.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/107_stack_safe.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/107_stack_safe.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/108_constructor.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/108_constructor.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/109_float_struct_calling.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/109_float_struct_calling.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/110_average.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/110_average.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/111_conversion.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/111_conversion.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/114_bound_signal.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/114_bound_signal.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/115_bound_setjmp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/115_bound_setjmp.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/116_bound_setjmp2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/116_bound_setjmp2.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/117_builtins.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/117_builtins.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/118_switch.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/118_switch.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/119_random_stuff.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/119_random_stuff.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/120_alias.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/120_alias.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/121_struct_return.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/121_struct_return.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/122_vla_reuse.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/122_vla_reuse.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/123_vla_bug.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/123_vla_bug.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/127_asm_goto.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/127_asm_goto.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/128_run_atexit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/128_run_atexit.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/129_scopes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/129_scopes.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/130_large_argument.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/130_large_argument.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/131_return_struct_in_reg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/131_return_struct_in_reg.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/132_bound_test.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/132_bound_test.test -------------------------------------------------------------------------------- /tests/tinycc/tests2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/LICENSE -------------------------------------------------------------------------------- /tests/tinycc/tests2/inc/018_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/inc/018_include.h -------------------------------------------------------------------------------- /tests/tinycc/tests2/inc/018_include2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | printf ("counter %d\n", __COUNTER__); 3 | -------------------------------------------------------------------------------- /tests/tinycc/tests2/inc/104_inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/inc/104_inline.c -------------------------------------------------------------------------------- /tests/tinycc/tests2/inc/120_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tests/tinycc/tests2/inc/120_alias.c -------------------------------------------------------------------------------- /tools/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstogov/rcc/HEAD/tools/tester.c --------------------------------------------------------------------------------