public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
[PATCH 0/3] Miscll fixlets
 2024-05-02 18:59 UTC  (4+ messages)
` [PATCH 1/3] docs: rtl: document GET_MODE_INNER
` [PATCH 2/3] RISC-V: miscll comment fixes [NFC]
` [PATCH 3/3] combine: initialize a local var

[PATCH v13 01/26] c++: Implement __is_const built-in trait
 2024-05-02 18:42 UTC  (68+ messages)
` [PATCH v14 00/26] Optimize more type traits
  ` [PATCH v14 21/26] c++: Implement __rank built-in trait
              ` Trait built-in naming convention
  ` [PATCH v16 00/26] Optimize more type traits
    ` [PATCH v16 01/26] c++: Implement __builtin_is_const trait
    ` [PATCH v16 02/26] libstdc++: Optimize std::is_const compilation performance
    ` [PATCH v16 03/26] c++: Implement __builtin_is_volatile trait
    ` [PATCH v16 04/26] libstdc++: Optimize std::is_volatile compilation performance
    ` [PATCH v16 05/26] c++: Implement __builtin_is_pointer trait
    ` [PATCH v16 06/26] libstdc++: Optimize std::is_pointer compilation performance
    ` [PATCH v16 07/26] c++: Implement __builtin_is_unbounded_array trait
    ` [PATCH v16 08/26] libstdc++: Optimize std::is_unbounded_array compilation performance
    ` [PATCH v16 09/26] c++: Implement __builtin_add_pointer trait
    ` [PATCH v16 10/26] libstdc++: Optimize std::add_pointer compilation performance
    ` [PATCH v16 11/26] c++: Implement __builtin_remove_extent trait
    ` [PATCH v16 12/26] libstdc++: Optimize std::remove_extent compilation performance
    ` [PATCH v16 13/26] c++: Implement __builtin_remove_all_extents trait
    ` [PATCH v16 14/26] libstdc++: Optimize std::remove_all_extents compilation performance
    ` [PATCH v16 15/26] c++: Implement __builtin_add_lvalue_reference trait
    ` [PATCH v16 16/26] libstdc++: Optimize std::add_lvalue_reference compilation performance
    ` [PATCH v16 17/26] c++: Implement __builtin_add_rvalue_reference trait
    ` [PATCH v16 18/26] libstdc++: Optimize std::add_rvalue_reference compilation performance
    ` [PATCH v16 19/26] c++: Implement __builtin_decay trait
    ` [PATCH v16 20/26] libstdc++: Optimize std::decay compilation performance
    ` [PATCH v16 21/26] c++: Implement __builtin_rank trait
    ` [PATCH v16 22/26] libstdc++: Optimize std::rank compilation performance
    ` [PATCH v16 23/26] c++: Implement __builtin_is_invocable trait
    ` [PATCH v16 24/26] libstdc++: Optimize std::is_invocable compilation performance
    ` [PATCH v16 25/26] c++: Implement __builtin_is_nothrow_invocable trait
    ` [PATCH v16 26/26] libstdc++: Optimize std::is_nothrow_invocable compilation performance
    ` [PATCH v17 00/26] Optimize more type traits
      ` [PATCH v17 01/26] c++: Implement __is_const built-in trait
      ` [PATCH v17 02/26] libstdc++: Optimize std::is_const compilation performance
      ` [PATCH v17 03/26] c++: Implement __is_volatile built-in trait
      ` [PATCH v17 04/26] libstdc++: Optimize std::is_volatile compilation performance
      ` [PATCH v17 05/26] c++: Implement __is_pointer built-in trait
      ` [PATCH v17 06/26] libstdc++: Optimize std::is_pointer compilation performance
      ` [PATCH v17 07/26] c++: Implement __builtin_is_unbounded_array trait
      ` [PATCH v17 08/26] libstdc++: Optimize std::is_unbounded_array compilation performance
      ` [PATCH v17 09/26] c++: Implement __add_pointer built-in trait
      ` [PATCH v17 10/26] libstdc++: Optimize std::add_pointer compilation performance
      ` [PATCH v17 11/26] c++: Implement __remove_extent built-in trait
      ` [PATCH v17 12/26] libstdc++: Optimize std::remove_extent compilation performance
      ` [PATCH v17 13/26] c++: Implement __remove_all_extents built-in trait
      ` [PATCH v17 14/26] libstdc++: Optimize std::remove_all_extents compilation performance
      ` [PATCH v17 15/26] c++: Implement __add_lvalue_reference built-in trait
      ` [PATCH v17 16/26] libstdc++: Optimize std::add_lvalue_reference compilation performance
      ` [PATCH v17 17/26] c++: Implement __add_rvalue_reference built-in trait
      ` [PATCH v17 18/26] libstdc++: Optimize std::add_rvalue_reference compilation performance
      ` [PATCH v17 19/26] c++: Implement __decay built-in trait
      ` [PATCH v17 20/26] libstdc++: Optimize std::decay compilation performance
      ` [PATCH v17 21/26] c++: Implement __array_rank built-in trait
      ` [PATCH v17 22/26] libstdc++: Optimize std::rank compilation performance
      ` [PATCH v17 23/26] c++: Implement __builtin_is_invocable trait
      ` [PATCH v17 24/26] libstdc++: Optimize std::is_invocable compilation performance
      ` [PATCH v17 25/26] c++: Implement __builtin_is_nothrow_invocable trait
      ` [PATCH v17 26/26] libstdc++: Optimize std::is_nothrow_invocable compilation performance

[PATCH 1/2] c++: requires-exprs and partial constraint subst [PR112769]
 2024-05-02 18:11 UTC  (8+ messages)
` [PATCH 2/2] c++: remove lookup_template_class's entering_scope flag

[PATCH] c++/modules: Fix dangling pointer with imported_temploid_friends
 2024-05-02 18:05 UTC  (6+ messages)
    ` [PATCH v2] "

[PATCH 1/1] gcc-14: document P1689R5 scanning output support
 2024-05-02 18:03 UTC  (3+ messages)
  ` [PATCHv2 wwwdocs "

[PATCH] c++/modules: Stream unmergeable temporaries by value again [PR114856]
 2024-05-02 17:53 UTC  (3+ messages)

[RFA][RISC-V] Improve constant synthesis for constants with 2 bits set
 2024-05-02 17:28 UTC  (2+ messages)

[PATCH v2 0/6] btf: refactor and add pruning option
 2024-05-02 17:11 UTC  (7+ messages)
` [PATCH v2 1/6] ctf, btf: restructure CTF/BTF emission
` [PATCH v2 2/6] opts: allow any combination of DWARF, CTF, BTF
` [PATCH v2 3/6] ctf: use pointers instead of IDs internally
` [PATCH v2 4/6] btf: refactor and simplify implementation
` [PATCH v2 5/6] btf: add -fprune-btf option
` [PATCH v2 6/6] bpf,btf: enable BTF pruning by default for BPF

[PATCH] RISC-V: Add testcase for pr114734
 2024-05-02 16:23 UTC  (3+ messages)
  ` [Committed] "

[PATCH 0/6] btf: refactor and add pruning option
 2024-05-02 15:58 UTC  (8+ messages)
` [PATCH 1/6] ctf, btf: restructure CTF/BTF emission
` [PATCH 2/6] opts: allow any combination of DWARF, CTF, BTF
` [PATCH 3/6] ctf: use pointers instead of IDs internally
` [PATCH 4/6] btf: refactor and simplify implementation
` [PATCH 5/6] btf: add -fprune-btf option
` [PATCH 6/6] bpf,btf: enable BTF pruning by default for BPF

[committed] [RISC-V] Don't run new rounding tests on newlib risc-v targets
 2024-05-02 14:44 UTC 

[PATCH v2] gcc-14: Mention that some warnings are now errors
 2024-05-02 14:29 UTC  (3+ messages)

[COMMITTED] Remove obsolete Solaris 11.3 support
 2024-05-02 14:06 UTC 

[PATCH RFA (cgraph)] c++: pragma target and static init [PR109753]
 2024-05-02 13:54 UTC 

[PATCH] PR middle-end/111701: signbit(x*x) vs -fsignaling-nans
 2024-05-02 13:48 UTC  (5+ messages)

[PATCH] libgm2: re-generate with autoreconf
 2024-05-02 13:47 UTC  (5+ messages)

[PATCH] c++: Clear is_unbraced_* when parsing declaration_seq_opt [PR114917]
 2024-05-02 13:45 UTC  (2+ messages)

[PATCH] fixincludes: add AC_CONFIG_MACRO_DIRS to configure.ac
 2024-05-02 13:36 UTC  (4+ messages)

cfgrtl: Fix MEM_EXPR update in duplicate_insn_chain [PR114924]
 2024-05-02 13:33 UTC 

[PATCH] MATCH: Maybe expand (T)(A + C1) * C2 and (T)(A + C1) * C2 + C3 [PR109393]
 2024-05-02 13:27 UTC  (4+ messages)

[PATCH][v3] tree-optimization/114921 - _Float16 -> __bf16 isn't noop
 2024-05-02 13:11 UTC 

[PATCH] Improve SLP dump and graph
 2024-05-02 13:10 UTC 

[pushed] Objective-C, NeXT, v2: Correct a regression in code-gen
 2024-05-02 13:05 UTC  (2+ messages)

[PATCH v1] Internal-fn: Introduce new internal function SAT_ADD
 2024-05-02 12:57 UTC  (7+ messages)
` [PATCH v3] "

[PATCH] rust: Add rust.install-dvi and rust.install-html rules
 2024-05-02 12:54 UTC  (4+ messages)

[Backport] tree-optimization/114672 - WIDEN_MULT_PLUS_EXPR type mismatch
 2024-05-02 12:49 UTC  (2+ messages)

[PATCH] tree-optimization/114921 - _Float16 -> __bf16 isn't noop
 2024-05-02 12:18 UTC 

[PATCH] tree-optimization/114921 - _Float16 -> __bf16 isn't noop
 2024-05-02 12:13 UTC 

[PATCH] tree-optimization/114921 - _Float16 -> __bf16 isn't noop
 2024-05-02 11:59 UTC 

[PATCH] libstdc++: Fix <memory> for -std=c++23 -ffreestanding [PR114866]
 2024-05-02 11:26 UTC 

[PATCH] libstdc++: Fix std::chrono::tzdb to work with vanguard format
 2024-05-02 11:25 UTC  (2+ messages)

[COMMITTED] Cleanups to unsupported_range
 2024-05-02 11:18 UTC  (5+ messages)
` [COMMITTED] Reduce startup costs for Value_Range

[PATCH] testsuite: Verify r0-r3 are extended with CMSE
 2024-05-02 10:50 UTC  (2+ messages)
` [PATCH v2] "

[PATCH] Silence two instances of -Wcalloc-transposed-args
 2024-05-02 10:50 UTC  (2+ messages)

[PATCH] fix single argument static_assert
 2024-05-02 10:33 UTC  (2+ messages)

[committed] libgomp: Add gfx90c, 1036 and 1103 declare variant tests
 2024-05-02 10:06 UTC 

[C PATCH] PR c/109618: ICE-after-error from error_mark_node
 2024-05-02  9:57 UTC  (6+ messages)

[PATCH v3 1/2] Driver: Add new -truncate option
 2024-05-02  9:34 UTC  (3+ messages)

[PATCH] PR tree-opt/113673: Avoid load merging from potentially trapping additions
 2024-05-02  9:26 UTC  (2+ messages)

[PATCH] Update libbid according to the latest Intel Decimal Floating-Point Math Library
 2024-05-02  9:20 UTC  (2+ messages)

[PATCH] Make graph dumps use graphviz format
 2024-05-02  7:00 UTC 

[PATCH] c++/c-common: Fix convert_vector_to_array_for_subscript for qualified vector types [PR89224]
 2024-05-02  6:50 UTC  (5+ messages)

[committed] [RISC-V] Improve floor, ceil & related operations for RISC-V
 2024-05-02  2:49 UTC  (6+ messages)

[pushed] doc: Describe limitations re Ada, D, and Go on FreeBSD
 2024-05-01 22:53 UTC 

[PATCH] Fix auto deduction for template specialization scopes [114915]
 2024-05-01 22:52 UTC 

[PATCH] c++: problematic assert in reference_binding [PR113141]
 2024-05-01 22:17 UTC  (13+ messages)

[PATCH 0/4] c++/modules: Fix missed GMF discarding
 2024-05-01 20:27 UTC  (15+ messages)
` [PATCH 1/4] c++/modules: Don't emit unused GMF partial specializations [PR114630]
` [PATCH 2/4] c++/modules: Track module purview for deferred instantiations [PR114630]
` [PATCH 3/4] c++/modules: Also track module purview from deferred vtable instantiation [PR114630]
` [PATCH 4/4] c++: Add new xtreme-header testcase for GMF discarding

[PATCH] libgcc: Rename __trunchfbf2 to __extendhfbf2
 2024-05-01 20:00 UTC  (2+ messages)

[PATCH] libstdc++: Fix handling of incomplete UTF-8 sequences in _Unicode_view
 2024-05-01 19:41 UTC 

[pushed] c++: drop in-charge for dtors without vbases
 2024-05-01 19:00 UTC 

[PATCH] c++: Implement C++26 P2573R2 - = delete("should have a reason"); [PR114458]
 2024-05-01 18:58 UTC  (2+ messages)

[committed] [RISC-V] Trivial pattern cleanup
 2024-05-01 18:49 UTC 

Invitation to register as a Vendor
 2024-05-01 18:46 UTC 

[committed] [RISC-V] Fix detection of store pair fusion cases
 2024-05-01 17:30 UTC 

[PATCH v5 0/4]Allow flexible array members in unions and alone in structures [PR53548]
 2024-05-01 16:52 UTC  (5+ messages)
` [PATCH v5 1/4] Allow "
` [PATCH v5 2/4] C and C++ FE changes
` [PATCH v5 3/4] Add testing cases for flexible array members in unions and alone in structures
` [PATCH v5 4/4] Update the C/C++ FEs routine

[committed] libstdc++: Guard uses of is_pointer_interconvertible_v [PR114891]
 2024-05-01 16:27 UTC 

[PATCH 0/4] Add DF_LIVE_SUBREG data and apply to IRA and LRA
 2024-05-01 16:24 UTC  (5+ messages)
` [PATCH 3/4] ira: Apply DF_LIVE_SUBREG data
` [PATCH 4/4] lra: "

[PATCH v4 0/4] Allow flexible array members in unions and alone in structures [PR53548]
 2024-05-01 16:15 UTC  (7+ messages)
` [PATCH v4 1/4] "
` [PATCH v4 2/4] C and C++ FE changes
` [PATCH v4 3/4] Add testing cases for flexible array members in unions and alone in structures
` [PATCH v4 4/4] Update the C/C++ FE routines

[pushed] c++: const void* memchr [PR113706]
 2024-05-01 15:38 UTC 

[PATCH] c++: Implement modules ABI for vtable emissions
 2024-05-01 15:12 UTC  (2+ messages)

[pushed] doc: FreeBSD no longer has a GNU toolchain in base
 2024-05-01 14:27 UTC 

[wwwdocs] Porting-to-14: Mention new pragma GCC Target behavior
 2024-05-01 14:05 UTC  (4+ messages)

[PATCH v3 0/4]Allow flexible array members in unions and alone in structures [PR53548]
 2024-05-01 14:02 UTC  (7+ messages)
` [PATCH v3 1/4] Allow "

[PATCH][wwwdocs] Improve grammar for AVR changes in GCC 14
 2024-05-01 13:37 UTC  (3+ messages)

Fwd: [PATCH V2 0/4] Add DF_LIVE_SUBREG data and apply to IRA and LRA
 2024-05-01 13:08 UTC 

[PATCH] wwwdocs: Add note to changes.html for __has_{feature,extension}
 2024-05-01 11:27 UTC  (6+ messages)

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).