0

I am trying to decompile a piece of code and apparently gcc prefers less complicated instructions over the more complex ones. After reading this answer I suspect it's because gcc is trying to reduce instruction dependencies. Is there any way to instruct gcc to ignore these dependencies?

Bat
  • 771
  • 11
  • 29

1 Answers1

0

If it's about decompiling then it is not GCC's business but Binutils'. Hence check your host's Binutils options whether you can disable printing instructions in their simplified representation.

emacs drives me nuts
  • 2,785
  • 13
  • 23