diff options
| author | Peter Collingbourne <pcc@google.com> | 2025-08-11 16:38:18 -0700 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2025-08-11 16:38:18 -0700 |
| commit | 84d2123ef42150c4c347ef1b65b17bf16cc7757f (patch) | |
| tree | 88687e5b3f6089e1fd2eddff07f82a3efeaa4daa | |
| parent | ef5022745c93ed705c575492e4e2be4aca543363 (diff) | |
[𝘀𝗽𝗿] initial versionusers/pcc/spr/basic-update-the-rule-for-whether-to-use-feature-or-extension
Created using spr 1.3.6-beta.1
| -rw-r--r-- | clang/include/clang/Basic/Features.def | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/include/clang/Basic/Features.def b/clang/include/clang/Basic/Features.def index c58e3f2400ad..94d5432f5fb3 100644 --- a/clang/include/clang/Basic/Features.def +++ b/clang/include/clang/Basic/Features.def @@ -18,9 +18,10 @@ // extension will be made available. // // FEATURE(...) should be used to advertise support for standard language -// features, whereas EXTENSION(...) should be used for clang extensions. Note -// that many of the identifiers in this file don't follow this rule for backward -// compatibility reasons. +// features or ABI-affecting clang extensions, whereas EXTENSION(...) should be +// used for clang extensions which do not affect ABI. Note that many of the +// identifiers in this file don't follow this rule for backward compatibility +// reasons. // //===----------------------------------------------------------------------===// |
