标签: visual-c++ attributes
您好我正在尝试在VC ++中编写一个最初在GCC中编译的例程。当我做出以下定义时:
typedef float v4sf __attribute__ (vector_size(16));
编译器抛出以下错误:
C2146: syntax error: missing ';' before identifier '__attribute__'
我可以替换这条线吗?
谢谢!