├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Dockerfile ├── INSTALL.md ├── Makefile.am ├── Makefile.in ├── NEWS ├── README.md ├── TODO ├── aclocal.m4 ├── autoconf ├── compile ├── config.guess ├── config.sub ├── depcomp ├── install-sh ├── ltmain.sh ├── missing └── ylwrap ├── bootstrap ├── clang_delta ├── .gitignore ├── AggregateToScalar.cpp ├── AggregateToScalar.h ├── BinOpSimplification.cpp ├── BinOpSimplification.h ├── CMakeLists.txt ├── CallExprToValue.cpp ├── CallExprToValue.h ├── ClangDelta.cpp ├── ClassTemplateToClass.cpp ├── ClassTemplateToClass.h ├── CombineGlobalVarDecl.cpp ├── CombineGlobalVarDecl.h ├── CombineLocalVarDecl.cpp ├── CombineLocalVarDecl.h ├── CommonParameterRewriteVisitor.h ├── CommonRenameClassRewriteVisitor.h ├── CommonStatementVisitor.h ├── CommonTemplateArgumentVisitor.h ├── CopyPropagation.cpp ├── CopyPropagation.h ├── EmptyStructToInt.cpp ├── EmptyStructToInt.h ├── ExpressionDetector.cpp ├── ExpressionDetector.h ├── InstantiateTemplateParam.cpp ├── InstantiateTemplateParam.h ├── InstantiateTemplateTypeParamToInt.cpp ├── InstantiateTemplateTypeParamToInt.h ├── LiftAssignmentExpr.cpp ├── LiftAssignmentExpr.h ├── LocalToGlobal.cpp ├── LocalToGlobal.h ├── Makefile.am ├── Makefile.in ├── MoveFunctionBody.cpp ├── MoveFunctionBody.h ├── MoveGlobalVar.cpp ├── MoveGlobalVar.h ├── ParamToGlobal.cpp ├── ParamToGlobal.h ├── ParamToLocal.cpp ├── ParamToLocal.h ├── README.txt ├── ReduceArrayDim.cpp ├── ReduceArrayDim.h ├── ReduceArraySize.cpp ├── ReduceArraySize.h ├── ReduceClassTemplateParameter.cpp ├── ReduceClassTemplateParameter.h ├── ReducePointerLevel.cpp ├── ReducePointerLevel.h ├── ReducePointerPairs.cpp ├── ReducePointerPairs.h ├── RemoveAddrTaken.cpp ├── RemoveAddrTaken.h ├── RemoveArray.cpp ├── RemoveArray.h ├── RemoveBaseClass.cpp ├── RemoveBaseClass.h ├── RemoveCtorInitializer.cpp ├── RemoveCtorInitializer.h ├── RemoveEnumMemberValue.cpp ├── RemoveEnumMemberValue.h ├── RemoveNamespace.cpp ├── RemoveNamespace.h ├── RemoveNestedFunction.cpp ├── RemoveNestedFunction.h ├── RemovePointer.cpp ├── RemovePointer.h ├── RemoveTrivialBaseTemplate.cpp ├── RemoveTrivialBaseTemplate.h ├── RemoveUnresolvedBase.cpp ├── RemoveUnresolvedBase.h ├── RemoveUnusedEnumMember.cpp ├── RemoveUnusedEnumMember.h ├── RemoveUnusedFunction.cpp ├── RemoveUnusedFunction.h ├── RemoveUnusedOuterClass.cpp ├── RemoveUnusedOuterClass.h ├── RemoveUnusedStructField.cpp ├── RemoveUnusedStructField.h ├── RemoveUnusedVar.cpp ├── RemoveUnusedVar.h ├── RenameCXXMethod.cpp ├── RenameCXXMethod.h ├── RenameClass.cpp ├── RenameClass.h ├── RenameFun.cpp ├── RenameFun.h ├── RenameParam.cpp ├── RenameParam.h ├── RenameVar.cpp ├── RenameVar.h ├── ReplaceArrayAccessWithIndex.cpp ├── ReplaceArrayAccessWithIndex.h ├── ReplaceArrayIndexVar.cpp ├── ReplaceArrayIndexVar.h ├── ReplaceCallExpr.cpp ├── ReplaceCallExpr.h ├── ReplaceClassWithBaseTemplateSpec.cpp ├── ReplaceClassWithBaseTemplateSpec.h ├── ReplaceDependentName.cpp ├── ReplaceDependentName.h ├── ReplaceDependentTypedef.cpp ├── ReplaceDependentTypedef.h ├── ReplaceDerivedClass.cpp ├── ReplaceDerivedClass.h ├── ReplaceFunctionDefWithDecl.cpp ├── ReplaceFunctionDefWithDecl.h ├── ReplaceOneLevelTypedefType.cpp ├── ReplaceOneLevelTypedefType.h ├── ReplaceSimpleTypedef.cpp ├── ReplaceSimpleTypedef.h ├── ReplaceUndefinedFunction.cpp ├── ReplaceUndefinedFunction.h ├── ReturnVoid.cpp ├── ReturnVoid.h ├── RewriteUtils.cpp ├── RewriteUtils.h ├── SimpleInliner.cpp ├── SimpleInliner.h ├── SimplifyCallExpr.cpp ├── SimplifyCallExpr.h ├── SimplifyCommaExpr.cpp ├── SimplifyCommaExpr.h ├── SimplifyDependentTypedef.cpp ├── SimplifyDependentTypedef.h ├── SimplifyIf.cpp ├── SimplifyIf.h ├── SimplifyNestedClass.cpp ├── SimplifyNestedClass.h ├── SimplifyRecursiveTemplateInstantiation.cpp ├── SimplifyRecursiveTemplateInstantiation.h ├── SimplifyStruct.cpp ├── SimplifyStruct.h ├── SimplifyStructUnionDecl.cpp ├── SimplifyStructUnionDecl.h ├── TemplateArgToInt.cpp ├── TemplateArgToInt.h ├── TemplateNonTypeArgToInt.cpp ├── TemplateNonTypeArgToInt.h ├── Transformation.cpp ├── Transformation.h ├── TransformationManager.cpp ├── TransformationManager.h ├── UnifyFunctionDecl.cpp ├── UnifyFunctionDecl.h ├── UnionToStruct.cpp ├── UnionToStruct.h ├── VectorToArray.cpp ├── VectorToArray.h ├── git_version.cpp.in ├── git_version.h ├── test_transformation └── tests │ ├── aggregate-to-scalar │ ├── cast.c │ ├── test1.c │ ├── test1.cc │ ├── test2.c │ ├── test2.cc │ ├── test3.c │ └── test4.c │ ├── callexpr-to-value │ ├── macro1.c │ ├── macro2.c │ ├── macro3.cc │ ├── test1.c │ └── test2.c │ ├── copy-propagation │ ├── copy1.cpp │ ├── copy2.cpp │ └── no_instance.c │ ├── empty-struct-to-int │ ├── empty-struct.cpp │ ├── empty-struct2.cpp │ ├── empty-struct3.cpp │ ├── empty-struct4.cpp │ ├── empty-struct5.cpp │ ├── empty-struct6.c │ ├── empty-struct7.c │ ├── struct_int.c │ ├── test1.cc │ ├── test2.cc │ └── test3.c │ ├── instantiate-template-param │ ├── default_param.cc │ ├── test1.cc │ ├── test2.cc │ └── test3.cc │ ├── lift-assignment-expr │ └── decltype.cc │ ├── lit.cfg │ ├── lit.site.cfg.in │ ├── local-to-global │ ├── macro.c │ ├── unnamed_1.c │ ├── unnamed_2.c │ └── unnamed_3.c │ ├── param-to-global │ └── macro.c │ ├── param-to-local │ ├── defaulted.cc │ ├── macro.c │ ├── param.cc │ ├── test1.cc │ ├── test2.cc │ ├── test3.cc │ ├── test4.cc │ └── test5.cc │ ├── reduce-array-dim │ └── non-type-temp-arg.cpp │ ├── reduce-array-size │ ├── array1.c │ └── invalid.c │ ├── reduce-class-template-param │ ├── class_template1.cc │ ├── class_template2.cc │ ├── class_template3.cc │ ├── default_arg.cc │ ├── default_partial.cc │ ├── macro.cc │ ├── macro2.cc │ ├── non_type_param.cc │ ├── partial1.cc │ ├── partial2.cc │ ├── partial3.cc │ ├── partial4.cc │ ├── partial5.cc │ ├── spec.cc │ ├── template_specilization_type.cc │ ├── test1.cc │ ├── test2.cc │ └── test3.cc │ ├── reduce-pointer-level │ ├── init-list.c │ ├── init-list2.c │ ├── pointer.c │ └── scalar-init-expr.cpp │ ├── remove-enum-member-value │ └── builtin_macro.c │ ├── remove-namespace │ ├── empty.cc │ ├── macro.cpp │ ├── macro2.cc │ ├── macro3.cc │ ├── namespace.cpp │ ├── namespace10.cpp │ ├── namespace11.cpp │ ├── namespace12.cpp │ ├── namespace13.cpp │ ├── namespace14.cpp │ ├── namespace15.cpp │ ├── namespace2.cpp │ ├── namespace3.cpp │ ├── namespace4.cpp │ ├── namespace5.cpp │ ├── namespace6.cpp │ ├── namespace7.cpp │ ├── namespace8.cpp │ ├── namespace9.cpp │ └── user_literal.cc │ ├── remove-nested-function │ └── remove_nested_func1.cc │ ├── remove-unused-field │ ├── designated1.c │ ├── designated2.c │ ├── designated3.c │ ├── designated4.c │ ├── designated5.c │ ├── unused_field1.c │ ├── unused_field2.c │ └── unused_field3.cpp │ ├── remove-unused-function │ ├── class.cc │ ├── const.cc │ ├── decl_group.c │ ├── decl_group2.c │ ├── default.cc │ ├── delete.cc │ ├── delete2.cc │ ├── inline_ns.cc │ ├── macro1.cc │ ├── macro2.cc │ ├── macro3.cc │ ├── macro_using.cc │ ├── template1.cc │ ├── template2.cc │ └── unused-funcs.cc │ ├── remove-unused-var │ ├── struct1.c │ ├── struct2.c │ └── unused_var.cpp │ ├── remove_lit_checks.in │ ├── rename-class │ ├── base_specifier.cpp │ ├── bool.cc │ ├── class_template.cc │ ├── class_template2.cc │ ├── dependent.cpp │ ├── dependent_name.cpp │ ├── derive.cc │ ├── dtor.cc │ ├── dtor1.cc │ ├── elaborated_type1.cpp │ ├── elaborated_type2.cpp │ ├── explicit_specialization.cpp │ ├── forward_decl.cc │ ├── injected_name.cpp │ ├── instantiation.cpp │ ├── parm.cpp │ ├── partial_specialization.cpp │ ├── rename-class1.cpp │ ├── rename-class2.cpp │ ├── specialization.cpp │ ├── static_member.cc │ ├── template_class_1.cpp │ ├── template_parm.cpp │ ├── template_template.cpp │ ├── template_template_parm.cpp │ ├── typedef.cpp │ ├── typedef2.cc │ ├── using.cpp │ └── using1.cc │ ├── rename-cxx-method │ ├── overloaded.cc │ ├── test1.cc │ ├── test2.cc │ └── test3.cc │ ├── rename-fun │ ├── func_templ.cc │ ├── overloaded.cc │ ├── test1.c │ └── test1.h │ ├── rename-param │ └── invalid.c │ ├── rename-var │ └── rename-var.c │ ├── replace-class-with-base-template-spec │ ├── macro.cc │ ├── small.cpp │ ├── test1.cc │ └── test2.cc │ ├── replace-derived-class │ ├── replace-derived1.cpp │ ├── replace-derived2.cpp │ ├── replace-derived3.cpp │ └── replace-derived4.cpp │ ├── replace-function-def-with-decl │ ├── macro1.c │ └── macro2.c │ ├── return-void │ ├── test1.c │ ├── test1.cc │ ├── test2.c │ ├── test3.c │ ├── test4.c │ ├── test5.c │ └── test6.c │ ├── simple-inliner │ ├── inline1.cc │ ├── inline10.c │ ├── inline11.cc │ ├── inline2.cc │ ├── inline3.cc │ ├── inline4.cc │ ├── inline5.cc │ ├── inline6.cc │ ├── inline7.cc │ ├── inline8.cc │ ├── inline9.c │ ├── recursive1.cc │ └── recursive2.cc │ ├── simplify-callexpr │ ├── macro.c │ ├── test.c │ └── test2.c │ ├── simplify-if │ └── macro.c │ ├── simplify-recursive-template-instantiation │ └── test.cc │ ├── template-arg-to-int │ ├── not_valid1.cc │ ├── not_valid2.cc │ ├── not_valid3.cc │ ├── not_valid4.cc │ ├── not_valid5.cc │ ├── test1.cc │ ├── test2.cc │ ├── test3.cc │ └── test4.cc │ └── union-to-struct │ ├── union1.c │ ├── union2.c │ └── union3.c ├── clex ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── clex.l ├── defs.h ├── driver.c └── strlex.l ├── cmake ├── GetGitRevisionDescription.cmake └── GetGitRevisionDescription.cmake.in ├── cmake_config.h.in ├── config.h.in ├── configure ├── configure.ac ├── creduce ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── creduce.in ├── creduce_config.pm.in ├── creduce_regexes.pm ├── creduce_utils.pm ├── pass_balanced.pm ├── pass_blank.pm ├── pass_clang.pm ├── pass_clang_binsrch.pm ├── pass_clex.pm ├── pass_comments.pm ├── pass_ifs.pm ├── pass_include_includes.pm ├── pass_includes.pm ├── pass_indent.pm ├── pass_ints.pm ├── pass_line_markers.pm ├── pass_lines.pm ├── pass_peep.pm ├── pass_special.pm ├── pass_ternary.pm └── pass_unifdef.pm ├── delta ├── .gitignore ├── Build.mk ├── CMakeLists.txt ├── License.txt ├── Makefile.am ├── Makefile.in ├── Readme ├── Test.mk ├── delta ├── multidelta ├── test0_delta │ ├── Makefile │ ├── hello.c │ ├── hello.test │ └── minimal_test.c.correct ├── test1_multidelta │ ├── Makefile │ ├── file1.end.txt │ ├── file1.start.txt │ ├── file2.end.txt │ ├── file2.start.txt │ ├── testit │ └── trivtest ├── test2_multidelta │ ├── Makefile │ ├── file1.end.txt │ ├── file1.start.txt │ ├── file2.end.txt │ ├── file2.start.txt │ ├── testit │ └── trivtest ├── topformflat.l └── www │ ├── index.html │ └── using_delta.html ├── git-hash.sh ├── m4 ├── ax_clang.m4 ├── ax_compare_version.m4 ├── ax_llvm.m4 ├── ax_prog_perl_modules.m4 ├── ax_prog_perl_version.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── scripts ├── Makefile.am ├── Makefile.in ├── del_lines ├── godelta8 ├── localize_headers ├── make_cde_package.sh ├── prep ├── shorten ├── test1_crash.sh ├── test1_make_large_warnings.pl ├── test1_wrong_code_framac.sh ├── test1_wrong_code_kcc.sh └── travis_deps.sh ├── tests ├── .gitignore ├── Makefile.am ├── Makefile.in ├── README ├── file1.c ├── file2.c ├── file3.c ├── run_tests ├── test0.bat ├── test0.sh ├── test1.sh ├── test2.sh ├── test3.sh ├── test4.sh ├── test5.sh ├── test6.sh └── test7.sh ├── unifdef ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── unifdef.c ├── unifdef.h └── version.h └── version.m4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autoconf/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/compile -------------------------------------------------------------------------------- /autoconf/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/config.guess -------------------------------------------------------------------------------- /autoconf/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/config.sub -------------------------------------------------------------------------------- /autoconf/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/depcomp -------------------------------------------------------------------------------- /autoconf/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/install-sh -------------------------------------------------------------------------------- /autoconf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/ltmain.sh -------------------------------------------------------------------------------- /autoconf/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/missing -------------------------------------------------------------------------------- /autoconf/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/autoconf/ylwrap -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/bootstrap -------------------------------------------------------------------------------- /clang_delta/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/.gitignore -------------------------------------------------------------------------------- /clang_delta/AggregateToScalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/AggregateToScalar.cpp -------------------------------------------------------------------------------- /clang_delta/AggregateToScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/AggregateToScalar.h -------------------------------------------------------------------------------- /clang_delta/BinOpSimplification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/BinOpSimplification.cpp -------------------------------------------------------------------------------- /clang_delta/BinOpSimplification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/BinOpSimplification.h -------------------------------------------------------------------------------- /clang_delta/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CMakeLists.txt -------------------------------------------------------------------------------- /clang_delta/CallExprToValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CallExprToValue.cpp -------------------------------------------------------------------------------- /clang_delta/CallExprToValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CallExprToValue.h -------------------------------------------------------------------------------- /clang_delta/ClangDelta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ClangDelta.cpp -------------------------------------------------------------------------------- /clang_delta/ClassTemplateToClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ClassTemplateToClass.cpp -------------------------------------------------------------------------------- /clang_delta/ClassTemplateToClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ClassTemplateToClass.h -------------------------------------------------------------------------------- /clang_delta/CombineGlobalVarDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CombineGlobalVarDecl.cpp -------------------------------------------------------------------------------- /clang_delta/CombineGlobalVarDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CombineGlobalVarDecl.h -------------------------------------------------------------------------------- /clang_delta/CombineLocalVarDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CombineLocalVarDecl.cpp -------------------------------------------------------------------------------- /clang_delta/CombineLocalVarDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CombineLocalVarDecl.h -------------------------------------------------------------------------------- /clang_delta/CommonParameterRewriteVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CommonParameterRewriteVisitor.h -------------------------------------------------------------------------------- /clang_delta/CommonRenameClassRewriteVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CommonRenameClassRewriteVisitor.h -------------------------------------------------------------------------------- /clang_delta/CommonStatementVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CommonStatementVisitor.h -------------------------------------------------------------------------------- /clang_delta/CommonTemplateArgumentVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CommonTemplateArgumentVisitor.h -------------------------------------------------------------------------------- /clang_delta/CopyPropagation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CopyPropagation.cpp -------------------------------------------------------------------------------- /clang_delta/CopyPropagation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/CopyPropagation.h -------------------------------------------------------------------------------- /clang_delta/EmptyStructToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/EmptyStructToInt.cpp -------------------------------------------------------------------------------- /clang_delta/EmptyStructToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/EmptyStructToInt.h -------------------------------------------------------------------------------- /clang_delta/ExpressionDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ExpressionDetector.cpp -------------------------------------------------------------------------------- /clang_delta/ExpressionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ExpressionDetector.h -------------------------------------------------------------------------------- /clang_delta/InstantiateTemplateParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/InstantiateTemplateParam.cpp -------------------------------------------------------------------------------- /clang_delta/InstantiateTemplateParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/InstantiateTemplateParam.h -------------------------------------------------------------------------------- /clang_delta/InstantiateTemplateTypeParamToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/InstantiateTemplateTypeParamToInt.cpp -------------------------------------------------------------------------------- /clang_delta/InstantiateTemplateTypeParamToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/InstantiateTemplateTypeParamToInt.h -------------------------------------------------------------------------------- /clang_delta/LiftAssignmentExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/LiftAssignmentExpr.cpp -------------------------------------------------------------------------------- /clang_delta/LiftAssignmentExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/LiftAssignmentExpr.h -------------------------------------------------------------------------------- /clang_delta/LocalToGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/LocalToGlobal.cpp -------------------------------------------------------------------------------- /clang_delta/LocalToGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/LocalToGlobal.h -------------------------------------------------------------------------------- /clang_delta/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/Makefile.am -------------------------------------------------------------------------------- /clang_delta/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/Makefile.in -------------------------------------------------------------------------------- /clang_delta/MoveFunctionBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/MoveFunctionBody.cpp -------------------------------------------------------------------------------- /clang_delta/MoveFunctionBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/MoveFunctionBody.h -------------------------------------------------------------------------------- /clang_delta/MoveGlobalVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/MoveGlobalVar.cpp -------------------------------------------------------------------------------- /clang_delta/MoveGlobalVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/MoveGlobalVar.h -------------------------------------------------------------------------------- /clang_delta/ParamToGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ParamToGlobal.cpp -------------------------------------------------------------------------------- /clang_delta/ParamToGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ParamToGlobal.h -------------------------------------------------------------------------------- /clang_delta/ParamToLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ParamToLocal.cpp -------------------------------------------------------------------------------- /clang_delta/ParamToLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ParamToLocal.h -------------------------------------------------------------------------------- /clang_delta/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/README.txt -------------------------------------------------------------------------------- /clang_delta/ReduceArrayDim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReduceArrayDim.cpp -------------------------------------------------------------------------------- /clang_delta/ReduceArrayDim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReduceArrayDim.h -------------------------------------------------------------------------------- /clang_delta/ReduceArraySize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReduceArraySize.cpp -------------------------------------------------------------------------------- /clang_delta/ReduceArraySize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReduceArraySize.h -------------------------------------------------------------------------------- /clang_delta/ReduceClassTemplateParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReduceClassTemplateParameter.cpp -------------------------------------------------------------------------------- /clang_delta/ReduceClassTemplateParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReduceClassTemplateParameter.h -------------------------------------------------------------------------------- /clang_delta/ReducePointerLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReducePointerLevel.cpp -------------------------------------------------------------------------------- /clang_delta/ReducePointerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReducePointerLevel.h -------------------------------------------------------------------------------- /clang_delta/ReducePointerPairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReducePointerPairs.cpp -------------------------------------------------------------------------------- /clang_delta/ReducePointerPairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReducePointerPairs.h -------------------------------------------------------------------------------- /clang_delta/RemoveAddrTaken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveAddrTaken.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveAddrTaken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveAddrTaken.h -------------------------------------------------------------------------------- /clang_delta/RemoveArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveArray.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveArray.h -------------------------------------------------------------------------------- /clang_delta/RemoveBaseClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveBaseClass.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveBaseClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveBaseClass.h -------------------------------------------------------------------------------- /clang_delta/RemoveCtorInitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveCtorInitializer.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveCtorInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveCtorInitializer.h -------------------------------------------------------------------------------- /clang_delta/RemoveEnumMemberValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveEnumMemberValue.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveEnumMemberValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveEnumMemberValue.h -------------------------------------------------------------------------------- /clang_delta/RemoveNamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveNamespace.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveNamespace.h -------------------------------------------------------------------------------- /clang_delta/RemoveNestedFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveNestedFunction.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveNestedFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveNestedFunction.h -------------------------------------------------------------------------------- /clang_delta/RemovePointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemovePointer.cpp -------------------------------------------------------------------------------- /clang_delta/RemovePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemovePointer.h -------------------------------------------------------------------------------- /clang_delta/RemoveTrivialBaseTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveTrivialBaseTemplate.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveTrivialBaseTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveTrivialBaseTemplate.h -------------------------------------------------------------------------------- /clang_delta/RemoveUnresolvedBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnresolvedBase.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveUnresolvedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnresolvedBase.h -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedEnumMember.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedEnumMember.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedEnumMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedEnumMember.h -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedFunction.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedFunction.h -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedOuterClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedOuterClass.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedOuterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedOuterClass.h -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedStructField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedStructField.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedStructField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedStructField.h -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedVar.cpp -------------------------------------------------------------------------------- /clang_delta/RemoveUnusedVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RemoveUnusedVar.h -------------------------------------------------------------------------------- /clang_delta/RenameCXXMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameCXXMethod.cpp -------------------------------------------------------------------------------- /clang_delta/RenameCXXMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameCXXMethod.h -------------------------------------------------------------------------------- /clang_delta/RenameClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameClass.cpp -------------------------------------------------------------------------------- /clang_delta/RenameClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameClass.h -------------------------------------------------------------------------------- /clang_delta/RenameFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameFun.cpp -------------------------------------------------------------------------------- /clang_delta/RenameFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameFun.h -------------------------------------------------------------------------------- /clang_delta/RenameParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameParam.cpp -------------------------------------------------------------------------------- /clang_delta/RenameParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameParam.h -------------------------------------------------------------------------------- /clang_delta/RenameVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameVar.cpp -------------------------------------------------------------------------------- /clang_delta/RenameVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RenameVar.h -------------------------------------------------------------------------------- /clang_delta/ReplaceArrayAccessWithIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceArrayAccessWithIndex.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceArrayAccessWithIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceArrayAccessWithIndex.h -------------------------------------------------------------------------------- /clang_delta/ReplaceArrayIndexVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceArrayIndexVar.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceArrayIndexVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceArrayIndexVar.h -------------------------------------------------------------------------------- /clang_delta/ReplaceCallExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceCallExpr.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceCallExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceCallExpr.h -------------------------------------------------------------------------------- /clang_delta/ReplaceClassWithBaseTemplateSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceClassWithBaseTemplateSpec.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceClassWithBaseTemplateSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceClassWithBaseTemplateSpec.h -------------------------------------------------------------------------------- /clang_delta/ReplaceDependentName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceDependentName.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceDependentName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceDependentName.h -------------------------------------------------------------------------------- /clang_delta/ReplaceDependentTypedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceDependentTypedef.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceDependentTypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceDependentTypedef.h -------------------------------------------------------------------------------- /clang_delta/ReplaceDerivedClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceDerivedClass.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceDerivedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceDerivedClass.h -------------------------------------------------------------------------------- /clang_delta/ReplaceFunctionDefWithDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceFunctionDefWithDecl.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceFunctionDefWithDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceFunctionDefWithDecl.h -------------------------------------------------------------------------------- /clang_delta/ReplaceOneLevelTypedefType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceOneLevelTypedefType.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceOneLevelTypedefType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceOneLevelTypedefType.h -------------------------------------------------------------------------------- /clang_delta/ReplaceSimpleTypedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceSimpleTypedef.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceSimpleTypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceSimpleTypedef.h -------------------------------------------------------------------------------- /clang_delta/ReplaceUndefinedFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceUndefinedFunction.cpp -------------------------------------------------------------------------------- /clang_delta/ReplaceUndefinedFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReplaceUndefinedFunction.h -------------------------------------------------------------------------------- /clang_delta/ReturnVoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReturnVoid.cpp -------------------------------------------------------------------------------- /clang_delta/ReturnVoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/ReturnVoid.h -------------------------------------------------------------------------------- /clang_delta/RewriteUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RewriteUtils.cpp -------------------------------------------------------------------------------- /clang_delta/RewriteUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/RewriteUtils.h -------------------------------------------------------------------------------- /clang_delta/SimpleInliner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimpleInliner.cpp -------------------------------------------------------------------------------- /clang_delta/SimpleInliner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimpleInliner.h -------------------------------------------------------------------------------- /clang_delta/SimplifyCallExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyCallExpr.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyCallExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyCallExpr.h -------------------------------------------------------------------------------- /clang_delta/SimplifyCommaExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyCommaExpr.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyCommaExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyCommaExpr.h -------------------------------------------------------------------------------- /clang_delta/SimplifyDependentTypedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyDependentTypedef.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyDependentTypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyDependentTypedef.h -------------------------------------------------------------------------------- /clang_delta/SimplifyIf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyIf.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyIf.h -------------------------------------------------------------------------------- /clang_delta/SimplifyNestedClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyNestedClass.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyNestedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyNestedClass.h -------------------------------------------------------------------------------- /clang_delta/SimplifyRecursiveTemplateInstantiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyRecursiveTemplateInstantiation.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyRecursiveTemplateInstantiation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyRecursiveTemplateInstantiation.h -------------------------------------------------------------------------------- /clang_delta/SimplifyStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyStruct.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyStruct.h -------------------------------------------------------------------------------- /clang_delta/SimplifyStructUnionDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyStructUnionDecl.cpp -------------------------------------------------------------------------------- /clang_delta/SimplifyStructUnionDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/SimplifyStructUnionDecl.h -------------------------------------------------------------------------------- /clang_delta/TemplateArgToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/TemplateArgToInt.cpp -------------------------------------------------------------------------------- /clang_delta/TemplateArgToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/TemplateArgToInt.h -------------------------------------------------------------------------------- /clang_delta/TemplateNonTypeArgToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/TemplateNonTypeArgToInt.cpp -------------------------------------------------------------------------------- /clang_delta/TemplateNonTypeArgToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/TemplateNonTypeArgToInt.h -------------------------------------------------------------------------------- /clang_delta/Transformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/Transformation.cpp -------------------------------------------------------------------------------- /clang_delta/Transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/Transformation.h -------------------------------------------------------------------------------- /clang_delta/TransformationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/TransformationManager.cpp -------------------------------------------------------------------------------- /clang_delta/TransformationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/TransformationManager.h -------------------------------------------------------------------------------- /clang_delta/UnifyFunctionDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/UnifyFunctionDecl.cpp -------------------------------------------------------------------------------- /clang_delta/UnifyFunctionDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/UnifyFunctionDecl.h -------------------------------------------------------------------------------- /clang_delta/UnionToStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/UnionToStruct.cpp -------------------------------------------------------------------------------- /clang_delta/UnionToStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/UnionToStruct.h -------------------------------------------------------------------------------- /clang_delta/VectorToArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/VectorToArray.cpp -------------------------------------------------------------------------------- /clang_delta/VectorToArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/VectorToArray.h -------------------------------------------------------------------------------- /clang_delta/git_version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/git_version.cpp.in -------------------------------------------------------------------------------- /clang_delta/git_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/git_version.h -------------------------------------------------------------------------------- /clang_delta/test_transformation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/test_transformation -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/cast.c -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/test1.c -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/test2.c -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/test3.c -------------------------------------------------------------------------------- /clang_delta/tests/aggregate-to-scalar/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/aggregate-to-scalar/test4.c -------------------------------------------------------------------------------- /clang_delta/tests/callexpr-to-value/macro1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/callexpr-to-value/macro1.c -------------------------------------------------------------------------------- /clang_delta/tests/callexpr-to-value/macro2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/callexpr-to-value/macro2.c -------------------------------------------------------------------------------- /clang_delta/tests/callexpr-to-value/macro3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/callexpr-to-value/macro3.cc -------------------------------------------------------------------------------- /clang_delta/tests/callexpr-to-value/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/callexpr-to-value/test1.c -------------------------------------------------------------------------------- /clang_delta/tests/callexpr-to-value/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/callexpr-to-value/test2.c -------------------------------------------------------------------------------- /clang_delta/tests/copy-propagation/copy1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/copy-propagation/copy1.cpp -------------------------------------------------------------------------------- /clang_delta/tests/copy-propagation/copy2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/copy-propagation/copy2.cpp -------------------------------------------------------------------------------- /clang_delta/tests/copy-propagation/no_instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/copy-propagation/no_instance.c -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct.cpp -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct2.cpp -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct3.cpp -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct4.cpp -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct5.cpp -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct6.c -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/empty-struct7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/empty-struct7.c -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/struct_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/struct_int.c -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/empty-struct-to-int/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/empty-struct-to-int/test3.c -------------------------------------------------------------------------------- /clang_delta/tests/instantiate-template-param/default_param.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/instantiate-template-param/default_param.cc -------------------------------------------------------------------------------- /clang_delta/tests/instantiate-template-param/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/instantiate-template-param/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/instantiate-template-param/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/instantiate-template-param/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/instantiate-template-param/test3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/instantiate-template-param/test3.cc -------------------------------------------------------------------------------- /clang_delta/tests/lift-assignment-expr/decltype.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/lift-assignment-expr/decltype.cc -------------------------------------------------------------------------------- /clang_delta/tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/lit.cfg -------------------------------------------------------------------------------- /clang_delta/tests/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/lit.site.cfg.in -------------------------------------------------------------------------------- /clang_delta/tests/local-to-global/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/local-to-global/macro.c -------------------------------------------------------------------------------- /clang_delta/tests/local-to-global/unnamed_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/local-to-global/unnamed_1.c -------------------------------------------------------------------------------- /clang_delta/tests/local-to-global/unnamed_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/local-to-global/unnamed_2.c -------------------------------------------------------------------------------- /clang_delta/tests/local-to-global/unnamed_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/local-to-global/unnamed_3.c -------------------------------------------------------------------------------- /clang_delta/tests/param-to-global/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-global/macro.c -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/defaulted.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/defaulted.cc -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/macro.c -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/param.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/param.cc -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/test3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/test3.cc -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/test4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/test4.cc -------------------------------------------------------------------------------- /clang_delta/tests/param-to-local/test5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/param-to-local/test5.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-array-dim/non-type-temp-arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-array-dim/non-type-temp-arg.cpp -------------------------------------------------------------------------------- /clang_delta/tests/reduce-array-size/array1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-array-size/array1.c -------------------------------------------------------------------------------- /clang_delta/tests/reduce-array-size/invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-array-size/invalid.c -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/class_template1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/class_template1.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/class_template2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/class_template2.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/class_template3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/class_template3.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/default_arg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/default_arg.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/default_partial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/default_partial.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/macro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/macro.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/macro2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/macro2.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/non_type_param.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/non_type_param.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/partial1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/partial1.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/partial2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/partial2.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/partial3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/partial3.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/partial4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/partial4.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/partial5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/partial5.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/spec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/spec.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/template_specilization_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/template_specilization_type.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-class-template-param/test3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-class-template-param/test3.cc -------------------------------------------------------------------------------- /clang_delta/tests/reduce-pointer-level/init-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-pointer-level/init-list.c -------------------------------------------------------------------------------- /clang_delta/tests/reduce-pointer-level/init-list2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-pointer-level/init-list2.c -------------------------------------------------------------------------------- /clang_delta/tests/reduce-pointer-level/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-pointer-level/pointer.c -------------------------------------------------------------------------------- /clang_delta/tests/reduce-pointer-level/scalar-init-expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/reduce-pointer-level/scalar-init-expr.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-enum-member-value/builtin_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-enum-member-value/builtin_macro.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/empty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/empty.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/macro.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/macro2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/macro2.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/macro3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/macro3.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace10.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace11.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace12.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace13.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace14.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace15.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace2.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace3.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace4.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace5.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace6.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace7.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace8.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/namespace9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/namespace9.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-namespace/user_literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-namespace/user_literal.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-nested-function/remove_nested_func1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-nested-function/remove_nested_func1.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/designated1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/designated1.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/designated2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/designated2.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/designated3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/designated3.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/designated4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/designated4.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/designated5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/designated5.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/unused_field1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/unused_field1.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/unused_field2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/unused_field2.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-field/unused_field3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-field/unused_field3.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/class.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/const.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/const.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/decl_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/decl_group.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/decl_group2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/decl_group2.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/default.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/default.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/delete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/delete.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/delete2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/delete2.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/inline_ns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/inline_ns.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/macro1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/macro1.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/macro2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/macro2.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/macro3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/macro3.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/macro_using.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/macro_using.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/template1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/template1.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/template2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/template2.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-function/unused-funcs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-function/unused-funcs.cc -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-var/struct1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-var/struct1.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-var/struct2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-var/struct2.c -------------------------------------------------------------------------------- /clang_delta/tests/remove-unused-var/unused_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove-unused-var/unused_var.cpp -------------------------------------------------------------------------------- /clang_delta/tests/remove_lit_checks.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/remove_lit_checks.in -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/base_specifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/base_specifier.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/bool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/bool.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/class_template.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/class_template.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/class_template2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/class_template2.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/dependent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/dependent.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/dependent_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/dependent_name.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/derive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/derive.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/dtor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/dtor.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/dtor1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/dtor1.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/elaborated_type1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/elaborated_type1.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/elaborated_type2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/elaborated_type2.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/explicit_specialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/explicit_specialization.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/forward_decl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/forward_decl.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/injected_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/injected_name.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/instantiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/instantiation.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/parm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/parm.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/partial_specialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/partial_specialization.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/rename-class1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/rename-class1.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/rename-class2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/rename-class2.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/specialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/specialization.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/static_member.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/static_member.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/template_class_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/template_class_1.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/template_parm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/template_parm.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/template_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/template_template.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/template_template_parm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/template_template_parm.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/typedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/typedef.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/typedef2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/typedef2.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/using.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/using.cpp -------------------------------------------------------------------------------- /clang_delta/tests/rename-class/using1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-class/using1.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-cxx-method/overloaded.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-cxx-method/overloaded.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-cxx-method/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-cxx-method/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-cxx-method/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-cxx-method/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-cxx-method/test3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-cxx-method/test3.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-fun/func_templ.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-fun/func_templ.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-fun/overloaded.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-fun/overloaded.cc -------------------------------------------------------------------------------- /clang_delta/tests/rename-fun/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-fun/test1.c -------------------------------------------------------------------------------- /clang_delta/tests/rename-fun/test1.h: -------------------------------------------------------------------------------- 1 | int foo(); 2 | -------------------------------------------------------------------------------- /clang_delta/tests/rename-param/invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-param/invalid.c -------------------------------------------------------------------------------- /clang_delta/tests/rename-var/rename-var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/rename-var/rename-var.c -------------------------------------------------------------------------------- /clang_delta/tests/replace-class-with-base-template-spec/macro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-class-with-base-template-spec/macro.cc -------------------------------------------------------------------------------- /clang_delta/tests/replace-class-with-base-template-spec/small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-class-with-base-template-spec/small.cpp -------------------------------------------------------------------------------- /clang_delta/tests/replace-class-with-base-template-spec/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-class-with-base-template-spec/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/replace-class-with-base-template-spec/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-class-with-base-template-spec/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/replace-derived-class/replace-derived1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-derived-class/replace-derived1.cpp -------------------------------------------------------------------------------- /clang_delta/tests/replace-derived-class/replace-derived2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-derived-class/replace-derived2.cpp -------------------------------------------------------------------------------- /clang_delta/tests/replace-derived-class/replace-derived3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-derived-class/replace-derived3.cpp -------------------------------------------------------------------------------- /clang_delta/tests/replace-derived-class/replace-derived4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-derived-class/replace-derived4.cpp -------------------------------------------------------------------------------- /clang_delta/tests/replace-function-def-with-decl/macro1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-function-def-with-decl/macro1.c -------------------------------------------------------------------------------- /clang_delta/tests/replace-function-def-with-decl/macro2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/replace-function-def-with-decl/macro2.c -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test1.c -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test2.c -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test3.c -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test4.c -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test5.c -------------------------------------------------------------------------------- /clang_delta/tests/return-void/test6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/return-void/test6.c -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline1.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline10.c -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline11.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline11.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline2.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline3.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline4.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline5.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline6.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline7.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline7.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline8.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/inline9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/inline9.c -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/recursive1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/recursive1.cc -------------------------------------------------------------------------------- /clang_delta/tests/simple-inliner/recursive2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simple-inliner/recursive2.cc -------------------------------------------------------------------------------- /clang_delta/tests/simplify-callexpr/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simplify-callexpr/macro.c -------------------------------------------------------------------------------- /clang_delta/tests/simplify-callexpr/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simplify-callexpr/test.c -------------------------------------------------------------------------------- /clang_delta/tests/simplify-callexpr/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simplify-callexpr/test2.c -------------------------------------------------------------------------------- /clang_delta/tests/simplify-if/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simplify-if/macro.c -------------------------------------------------------------------------------- /clang_delta/tests/simplify-recursive-template-instantiation/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/simplify-recursive-template-instantiation/test.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/not_valid1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/not_valid1.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/not_valid2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/not_valid2.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/not_valid3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/not_valid3.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/not_valid4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/not_valid4.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/not_valid5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/not_valid5.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/test1.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/test2.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/test3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/test3.cc -------------------------------------------------------------------------------- /clang_delta/tests/template-arg-to-int/test4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/template-arg-to-int/test4.cc -------------------------------------------------------------------------------- /clang_delta/tests/union-to-struct/union1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/union-to-struct/union1.c -------------------------------------------------------------------------------- /clang_delta/tests/union-to-struct/union2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/union-to-struct/union2.c -------------------------------------------------------------------------------- /clang_delta/tests/union-to-struct/union3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clang_delta/tests/union-to-struct/union3.c -------------------------------------------------------------------------------- /clex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/.gitignore -------------------------------------------------------------------------------- /clex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/CMakeLists.txt -------------------------------------------------------------------------------- /clex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/Makefile.am -------------------------------------------------------------------------------- /clex/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/Makefile.in -------------------------------------------------------------------------------- /clex/clex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/clex.l -------------------------------------------------------------------------------- /clex/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/defs.h -------------------------------------------------------------------------------- /clex/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/driver.c -------------------------------------------------------------------------------- /clex/strlex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/clex/strlex.l -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/cmake_config.h.in -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/configure.ac -------------------------------------------------------------------------------- /creduce/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/.gitignore -------------------------------------------------------------------------------- /creduce/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/CMakeLists.txt -------------------------------------------------------------------------------- /creduce/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/Makefile.am -------------------------------------------------------------------------------- /creduce/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/Makefile.in -------------------------------------------------------------------------------- /creduce/creduce.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/creduce.in -------------------------------------------------------------------------------- /creduce/creduce_config.pm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/creduce_config.pm.in -------------------------------------------------------------------------------- /creduce/creduce_regexes.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/creduce_regexes.pm -------------------------------------------------------------------------------- /creduce/creduce_utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/creduce_utils.pm -------------------------------------------------------------------------------- /creduce/pass_balanced.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_balanced.pm -------------------------------------------------------------------------------- /creduce/pass_blank.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_blank.pm -------------------------------------------------------------------------------- /creduce/pass_clang.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_clang.pm -------------------------------------------------------------------------------- /creduce/pass_clang_binsrch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_clang_binsrch.pm -------------------------------------------------------------------------------- /creduce/pass_clex.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_clex.pm -------------------------------------------------------------------------------- /creduce/pass_comments.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_comments.pm -------------------------------------------------------------------------------- /creduce/pass_ifs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_ifs.pm -------------------------------------------------------------------------------- /creduce/pass_include_includes.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_include_includes.pm -------------------------------------------------------------------------------- /creduce/pass_includes.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_includes.pm -------------------------------------------------------------------------------- /creduce/pass_indent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_indent.pm -------------------------------------------------------------------------------- /creduce/pass_ints.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_ints.pm -------------------------------------------------------------------------------- /creduce/pass_line_markers.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_line_markers.pm -------------------------------------------------------------------------------- /creduce/pass_lines.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_lines.pm -------------------------------------------------------------------------------- /creduce/pass_peep.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_peep.pm -------------------------------------------------------------------------------- /creduce/pass_special.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_special.pm -------------------------------------------------------------------------------- /creduce/pass_ternary.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_ternary.pm -------------------------------------------------------------------------------- /creduce/pass_unifdef.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/creduce/pass_unifdef.pm -------------------------------------------------------------------------------- /delta/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/.gitignore -------------------------------------------------------------------------------- /delta/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/Build.mk -------------------------------------------------------------------------------- /delta/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/CMakeLists.txt -------------------------------------------------------------------------------- /delta/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/License.txt -------------------------------------------------------------------------------- /delta/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/Makefile.am -------------------------------------------------------------------------------- /delta/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/Makefile.in -------------------------------------------------------------------------------- /delta/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/Readme -------------------------------------------------------------------------------- /delta/Test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/Test.mk -------------------------------------------------------------------------------- /delta/delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/delta -------------------------------------------------------------------------------- /delta/multidelta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/multidelta -------------------------------------------------------------------------------- /delta/test0_delta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test0_delta/Makefile -------------------------------------------------------------------------------- /delta/test0_delta/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test0_delta/hello.c -------------------------------------------------------------------------------- /delta/test0_delta/hello.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test0_delta/hello.test -------------------------------------------------------------------------------- /delta/test0_delta/minimal_test.c.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test0_delta/minimal_test.c.correct -------------------------------------------------------------------------------- /delta/test1_multidelta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test1_multidelta/Makefile -------------------------------------------------------------------------------- /delta/test1_multidelta/file1.end.txt: -------------------------------------------------------------------------------- 1 | foo; 2 | -------------------------------------------------------------------------------- /delta/test1_multidelta/file1.start.txt: -------------------------------------------------------------------------------- 1 | // file1.txt 2 | 3 | zebra; 4 | foo; 5 | giraffe; 6 | cow; 7 | -------------------------------------------------------------------------------- /delta/test1_multidelta/file2.end.txt: -------------------------------------------------------------------------------- 1 | bar; 2 | -------------------------------------------------------------------------------- /delta/test1_multidelta/file2.start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test1_multidelta/file2.start.txt -------------------------------------------------------------------------------- /delta/test1_multidelta/testit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test1_multidelta/testit -------------------------------------------------------------------------------- /delta/test1_multidelta/trivtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test1_multidelta/trivtest -------------------------------------------------------------------------------- /delta/test2_multidelta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test2_multidelta/Makefile -------------------------------------------------------------------------------- /delta/test2_multidelta/file1.end.txt: -------------------------------------------------------------------------------- 1 | foo; 2 | -------------------------------------------------------------------------------- /delta/test2_multidelta/file1.start.txt: -------------------------------------------------------------------------------- 1 | zebra; 2 | foo; 3 | giraffe; 4 | cow; 5 | -------------------------------------------------------------------------------- /delta/test2_multidelta/file2.end.txt: -------------------------------------------------------------------------------- 1 | bar; 2 | -------------------------------------------------------------------------------- /delta/test2_multidelta/file2.start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test2_multidelta/file2.start.txt -------------------------------------------------------------------------------- /delta/test2_multidelta/testit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test2_multidelta/testit -------------------------------------------------------------------------------- /delta/test2_multidelta/trivtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/test2_multidelta/trivtest -------------------------------------------------------------------------------- /delta/topformflat.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/topformflat.l -------------------------------------------------------------------------------- /delta/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/www/index.html -------------------------------------------------------------------------------- /delta/www/using_delta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/delta/www/using_delta.html -------------------------------------------------------------------------------- /git-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/git-hash.sh -------------------------------------------------------------------------------- /m4/ax_clang.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ax_clang.m4 -------------------------------------------------------------------------------- /m4/ax_compare_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ax_compare_version.m4 -------------------------------------------------------------------------------- /m4/ax_llvm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ax_llvm.m4 -------------------------------------------------------------------------------- /m4/ax_prog_perl_modules.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ax_prog_perl_modules.m4 -------------------------------------------------------------------------------- /m4/ax_prog_perl_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ax_prog_perl_version.m4 -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/Makefile.in -------------------------------------------------------------------------------- /scripts/del_lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/del_lines -------------------------------------------------------------------------------- /scripts/godelta8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/godelta8 -------------------------------------------------------------------------------- /scripts/localize_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/localize_headers -------------------------------------------------------------------------------- /scripts/make_cde_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/make_cde_package.sh -------------------------------------------------------------------------------- /scripts/prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/prep -------------------------------------------------------------------------------- /scripts/shorten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/shorten -------------------------------------------------------------------------------- /scripts/test1_crash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/test1_crash.sh -------------------------------------------------------------------------------- /scripts/test1_make_large_warnings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/test1_make_large_warnings.pl -------------------------------------------------------------------------------- /scripts/test1_wrong_code_framac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/test1_wrong_code_framac.sh -------------------------------------------------------------------------------- /scripts/test1_wrong_code_kcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/test1_wrong_code_kcc.sh -------------------------------------------------------------------------------- /scripts/travis_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/scripts/travis_deps.sh -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/Makefile.in -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/README -------------------------------------------------------------------------------- /tests/file1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/file1.c -------------------------------------------------------------------------------- /tests/file2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/file2.c -------------------------------------------------------------------------------- /tests/file3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/file3.c -------------------------------------------------------------------------------- /tests/run_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/run_tests -------------------------------------------------------------------------------- /tests/test0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test0.bat -------------------------------------------------------------------------------- /tests/test0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test0.sh -------------------------------------------------------------------------------- /tests/test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test1.sh -------------------------------------------------------------------------------- /tests/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test2.sh -------------------------------------------------------------------------------- /tests/test3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test3.sh -------------------------------------------------------------------------------- /tests/test4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test4.sh -------------------------------------------------------------------------------- /tests/test5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test5.sh -------------------------------------------------------------------------------- /tests/test6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test6.sh -------------------------------------------------------------------------------- /tests/test7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/tests/test7.sh -------------------------------------------------------------------------------- /unifdef/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/.gitignore -------------------------------------------------------------------------------- /unifdef/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/CMakeLists.txt -------------------------------------------------------------------------------- /unifdef/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/Makefile.am -------------------------------------------------------------------------------- /unifdef/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/Makefile.in -------------------------------------------------------------------------------- /unifdef/unifdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/unifdef.c -------------------------------------------------------------------------------- /unifdef/unifdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/unifdef.h -------------------------------------------------------------------------------- /unifdef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/unifdef/version.h -------------------------------------------------------------------------------- /version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csmith-project/creduce/HEAD/version.m4 --------------------------------------------------------------------------------