From: Tom de Vries Date: Sat, 19 Mar 2022 16:40:55 +0000 (+0100) Subject: [nvptx] Add mexperimental X-Git-Tag: basepoints/gcc-13~546 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4baa0d3c5ad66e5ec24b8b5db7042739f0290aa;p=thirdparty%2Fgcc.git [nvptx] Add mexperimental Add new option -mexperimental. This allows, rather than developing a new feature to completion in a development branch, to develop a new feature on trunk, without disturbing trunk. The equivalent of the feature branch merge then becomes making the functionality available for -mno-experimental. If more features at the same time will be developed, we can do something like -mexperimental=feature1,feature2 but for now that's not necessary. For now, has no effect. gcc/ChangeLog: 2022-03-19 Tom de Vries * config/nvptx/nvptx.opt (mexperimental): New option. --- diff --git a/gcc/config/nvptx/nvptx.opt b/gcc/config/nvptx/nvptx.opt index 980428b58cc8..11288d1a8eea 100644 --- a/gcc/config/nvptx/nvptx.opt +++ b/gcc/config/nvptx/nvptx.opt @@ -88,3 +88,6 @@ Target Var(nvptx_comment) Init(1) Undocumented malias Target Var(nvptx_alias) Init(0) Undocumented + +mexperimental +Target Var(nvptx_experimental) Init(0) Undocumented