RealView 編譯工具 編譯器參考指南
4.5.4. __attribute__((deprecated))
可以使用 deprecated
變量屬性聲明不提倡使用的變量,而不會(huì)導(dǎo)致編譯器發(fā)出任何警告或錯(cuò)誤。但是,對(duì) deprecated
變量的任何訪問都會(huì)生成警告,但仍會(huì)進(jìn)行編譯。警告指出了使用和定義變量的位置。這有助于確定不提倡使用特定定義的原因。
Note
此變量屬性是 ARM 編譯器支持的 GNU 編譯器擴(kuò)展。
extern int Variable_Attributes_deprecated_0 __attribute__ ((deprecated));
extern int Variable_Attributes_deprecated_1 __attribute__ ((deprecated));
void Variable_Attributes_deprecated_2()
{
Variable_Attributes_deprecated_0=1;
Variable_Attributes_deprecated_1=2;
}
編譯此示例時(shí),將生成兩條警告消息。
轉(zhuǎn)載自:
http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0348bc/Caccahah.html