[Bug preprocessor/89808] An option to disable warning "#pragma once in main file"
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89808 Ken Matsui changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |kmatsui at gcc dot gnu.org CC||kmatsui at gcc dot gnu.org
[Bug middle-end/113680] Missed optimization: Redundant cmp/test instructions when comparing (x - y) > 0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113680 Ken Matsui changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |kmatsui at gcc dot gnu.org CC||kmatsui at gcc dot gnu.org Status|NEW |ASSIGNED
[Bug c++/87343] Incomplete documentation for built-in type traits
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87343 Ken Matsui changed: What|Removed |Added Status|NEW |ASSIGNED CC||kmatsui at gcc dot gnu.org Assignee|unassigned at gcc dot gnu.org |kmatsui at gcc dot gnu.org
[Bug c++/115061] Compiling gcc failed when using clang 16.0.6
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115061 Ken Matsui changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |kmatsui at gcc dot gnu.org Status|UNCONFIRMED |ASSIGNED Last reconfirmed||2024-05-13 Ever confirmed|0 |1
[Bug c++/115061] Compiling gcc failed when using clang 16.0.6
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115061 Ken Matsui changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|--- |FIXED --- Comment #2 from Ken Matsui --- Thank you for reporting this, Demin. I fixed this problem in https://gcc.gnu.org/g:30ff6c55ba0f2262cf292c90d7b9d771005305f0.
[Bug libstdc++/113250] std::filesystem::equivalent("", "/") should throw
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113250 Ken Matsui changed: What|Removed |Added CC||kmatsui at gcc dot gnu.org --- Comment #2 from Ken Matsui --- Confirmed. I think the testcase should also be like the following. --- a/libstdc++-v3/testsuite/27_io/filesystem/operations/equivalent.cc +++ b/libstdc++-v3/testsuite/27_io/filesystem/operations/equivalent.cc @@ -40,7 +40,7 @@ test01() __gnu_test::scoped_file f1(p1); ec = bad_ec; result = equivalent(p1, p2, ec); - VERIFY( !ec ); + VERIFY( ec == std::errc::no_such_file_or_directory );
[Bug libstdc++/113250] std::filesystem::equivalent("", "/") should throw
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113250 Ken Matsui changed: What|Removed |Added Status|NEW |ASSIGNED
[Bug libstdc++/106308] Consider using statx(2) for std::filesystem
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106308 Ken Matsui changed: What|Removed |Added Status|NEW |ASSIGNED
[Bug libstdc++/113250] std::filesystem::equivalent("", "/") should throw
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113250 Ken Matsui changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED|RESOLVED Target Milestone|--- |11.5 --- Comment #7 from Ken Matsui --- Fixed in 11.5, 12.4, 13.3. Thank you for filing this issue, Davide!
[Bug other/44209] [meta-bug] Some warnings are not linked to diagnostics options
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44209 Bug 44209 depends on bug 89808, which changed state. Bug 89808 Summary: An option to disable warning "#pragma once in main file" https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89808 What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|--- |FIXED
[Bug preprocessor/89808] An option to disable warning "#pragma once in main file"
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89808 Ken Matsui changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED|RESOLVED --- Comment #17 from Ken Matsui --- Thank you for your report, sduguay. This issue has been resolved in https://gcc.gnu.org/g:821d56100e1110ab6a166f50819522254eb30923.
[Bug bootstrap/117039] [15 Regression] Build failure: libcpp/directives.cc:2078:34: error: unknown conversion type character '>' in format [-Werror=format=]
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117039 Ken Matsui changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED|RESOLVED --- Comment #5 from Ken Matsui --- Thank you for your report. Addressed in https://gcc.gnu.org/g:f709990333597b30dff54876bfdaada14e9cde30.
[Bug bootstrap/117039] [15 Regression] Build failure: libcpp/directives.cc:2078:34: error: unknown conversion type character '>' in format [-Werror=format=]
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117039 Ken Matsui changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |kmatsui at gcc dot gnu.org Last reconfirmed||2024-10-09 Status|UNCONFIRMED |ASSIGNED Ever confirmed|0 |1 --- Comment #3 from Ken Matsui --- (In reply to Jakub Jelinek from comment #2) > My https://gcc.gnu.org/pipermail/gcc-patches/2024-September/662960.html > patch hasn't been reviewed yet, with that it would just work, without it we > need to (hopefully temporarily) use ' instead of %< and %> I'll soon update the code to use ' instead for now, thank you.