diff options
author | liuhongt <hongtao.liu@intel.com> | 2023-08-23 07:31:13 +0800 |
---|---|---|
committer | liuhongt <hongtao.liu@intel.com> | 2023-08-24 09:52:18 +0800 |
commit | 0a888650303750fd72878fc083dfb30b62e30809 (patch) | |
tree | 79cc2587100e6aef59b50e3f88bbb50f2386a5d6 /gcc | |
parent | afe15e9742d9fefb3f4a9b1662cb3f977e3645fd (diff) | |
download | gcc-0a888650303750fd72878fc083dfb30b62e30809.zip gcc-0a888650303750fd72878fc083dfb30b62e30809.tar.gz gcc-0a888650303750fd72878fc083dfb30b62e30809.tar.bz2 |
Adjust GCC V13 to GCC 13.1 in diagnotic.
gcc/ChangeLog:
* config/i386/i386.cc (ix86_invalid_conversion): Adjust GCC
V13 to GCC 13.1.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.cc b/gcc/config/i386/i386.cc index e7822ef..e9bda42 100644 --- a/gcc/config/i386/i386.cc +++ b/gcc/config/i386/i386.cc @@ -22899,7 +22899,7 @@ ix86_invalid_conversion (const_tree fromtype, const_tree totype) || (TYPE_MODE (totype) == BFmode && TYPE_MODE (fromtype) == HImode)) warning (0, "%<__bfloat16%> is redefined from typedef %<short%> " - "to real %<__bf16%> since GCC V13, be careful of " + "to real %<__bf16%> since GCC 13.1, be careful of " "implicit conversion between %<__bf16%> and %<short%>; " "an explicit bitcast may be needed here"); } |