Forum Discussion
Altera_Forum
Honored Contributor
17 years agoFor the case you are looking at (a == 0) vs !a, it is likely the synthesis tool will optimize to the same thing in the end.
However, I have seen a performance increase when comparing two signals using !(a ^ b) vs. (a == b) The performance increase comes at the expense of using one more LUT. Jake