lifting-bits / remill

Library for lifting machine code to LLVM bitcode
Apache License 2.0
1.22k stars 143 forks source link

Fix compilation with GCC #671

Closed ekilmer closed 1 year ago

ekilmer commented 1 year ago

Fixes a few errors reported by GCC and not Clang

  1. "non-trivial designated initializers not supported"

    • Fixed by adding array entries that were missing initializers and reordering
  2. "Cannot bind packed field"

    • This fixes arrays missing initializers for some entries

TODO:

ekilmer commented 1 year ago

Superseded by #672