What is the equivalent of v4sf and __attribute__ in Visual Studio C++?
问题 typedef float v4sf __attribute__ ((mode(V4SF))); This is in GCC. Anyone knows the equivalence syntax? VS 2010 will show __attribute__ has no storage class of this type, and mode is not defined. I searched on the Internet and it said Equivalent to __attribute__( aligned( size ) ) in GCC It is helpful for former unix developers or people writing code that works on multiple platforms that in GCC you achieve the same results using attribute ( aligned( ... ) ) See here for more information: http:/