-
My only use case for enums is to affect display of integers, so I can see, e.g. I think, for the purposes of analysis enums should be treated exactly like their underlying type, and enums should only be taken into consideration when displaying integer values. Am I missing some beneficial use cases for enums in analysis? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Can you give a more specific example of how they break? It's extremely difficult to reply to this in a meaningful way without more understanding of what is breaking for you and how. Enums are a type, changing the type could mean that you for example, replace a correctly sized type with an incorrectly sized one which would change the decompilation. That may be why you're not able to reproduce the issue. Without more information though there's not really a whole lot we can do here unfortunately. |
Beta Was this translation helpful? Give feedback.
Can you give a more specific example of how they break? It's extremely difficult to reply to this in a meaningful way without more understanding of what is breaking for you and how. Enums are a type, changing the type could mean that you for example, replace a correctly sized type with an incorrectly sized one which would change the decompilation.
That may be why you're not able to reproduce the issue.
Without more information though there's not really a whole lot we can do here unfortunately.