Files
Mergen/.clang-format
yusufcanislek 1a60446f57 Refactor: split Semantics.ipp, remove dead code, add editor configs
- Split Semantics.ipp (4509 lines) into 5 category sub-files:
  Semantics_Helpers.ipp, Semantics_ControlFlow.ipp,
  Semantics_Arithmetic.ipp, Semantics_Bitwise.ipp, Semantics_Misc.ipp
- Remove dead simplifyValue() function and all call sites
- Remove 330 lines of commented-out Z3 integration code from OperandUtils.ipp
- Remove commented-out dead code from ZydisDisassembler.hpp and lifterClass_symbolic.hpp
- Remove using namespace llvm from GEPTracker.h header
- Add .clang-format (LLVM base) and .editorconfig
- Update .gitignore for temp/debug file patterns
- Fix Docker workflow placeholder tag (my-image-name -> mergen)
- Align cmake.toml rewrite_microtests target with lifter target
2026-03-06 17:56:51 +03:00

9 lines
167 B
YAML

BasedOnStyle: LLVM
ColumnLimit: 100
IndentWidth: 2
UseTab: Never
BreakBeforeBraces: Attach
AllowShortFunctionsOnASingleLine: Empty
SortIncludes: false
Standard: c++20