I looked around and was not sure where best to post this question...this won out over all.
Question...
I have legacy C code that employs heavy duty graphics algorithms ... internally quite a few of them sit on use of a WORD data type. At the time of their development memory was not as it is today and so a WORD data type with max value of 65k was enough to satisfy any requirements.
In convsersation someone recently spoke about the use of WORD vs. DWORD with today's compiler optimizations and performance on 32bit processors. If I rework the algos to utilize a DWORD vs. WORD I understand I will eat up more memory but the benefits are said to be incredible regarding performance.
I don't really see how much performance would be affected so any opinions on this topic would be greatly appreciated.

Performance for C code
Dean Kalanquin
You will need to try it out and see by how much performance improves, but I would think it is highly unlikely that you will see benefits I would classify as "incredible".
Ronald Laeremans
Visual C++ team
Steve Cochran