From aef8c64777a7d3b4aef1661305659d8ff5133dc9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 5 Dec 2005 05:23:06 +0000 Subject: [PATCH] attribute((used)) is now supported git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24603 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ReleaseNotes.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 103909e9563..6e40e7a60ea 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -254,14 +254,14 @@ work: Supported: format, format_arg, non_null, noreturn, constructor, destructor, - unused, + unused, used, deprecated, warn_unused_result, weak
Ignored: noinline, always_inline, pure, const, nothrow, malloc, no_instrument_function, cdecl
- Unsupported: used, section, alias, + Unsupported: section, alias, visibility, regparm, stdcall, fastcall, all other target specific attributes @@ -269,7 +269,7 @@ work: Specifying attributes of variables.
Supported: cleanup, common, nocommon, deprecated, transparent_union, - unused, weak
+ unused, used, weak
Unsupported: aligned, mode, packed, section, shared, tls_model, -- 2.34.1