public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
[PATCH 1/4] libbacktrace: change all pc related variables to uintptr_t
 2024-05-03 22:27 UTC  (13+ messages)
` [PATCH 4/4] libbacktrace: get debug information for loaded dlls
      ` [PATCH 5/4] libbacktrace: improve getting "

[PATCH 1/3] Fix printing COMPOUND_EXPR in .original [PR23872]
 2024-05-03 22:12 UTC  (8+ messages)
` [PATCH 2/3] Improve DECL_EXPR printing "
` [PATCH 3/3] Add parentheses around DECL_INIT for "

[PATCH, obvious] Fix for ICE in tree-nested.cc
 2024-05-03 21:47 UTC 

[PATCH v2 0/6] btf: refactor and add pruning option
 2024-05-03 21:12 UTC  (12+ 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 v16 00/26] Optimize more type traits
 2024-05-03 20:52 UTC  (71+ messages)
` [PATCH v17 "
  ` [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 v18 00/26] Optimize more type traits
    ` [PATCH v18 01/26] c++: Implement __is_const built-in trait
    ` [PATCH v18 02/26] libstdc++: Optimize std::is_const compilation performance
    ` [PATCH v18 03/26] c++: Implement __is_volatile built-in trait
    ` [PATCH v18 04/26] libstdc++: Optimize std::is_volatile compilation performance
    ` [PATCH v18 05/26] c++: Implement __is_pointer built-in trait
    ` [PATCH v18 06/26] libstdc++: Optimize std::is_pointer compilation performance
    ` [PATCH v18 07/26] c++: Implement __is_unbounded_array built-in trait
    ` [PATCH v18 08/26] libstdc++: Optimize std::is_unbounded_array compilation performance
    ` [PATCH v18 09/26] c++: Implement __add_pointer built-in trait
    ` [PATCH v18 10/26] libstdc++: Optimize std::add_pointer compilation performance
    ` [PATCH v18 11/26] c++: Implement __remove_extent built-in trait
    ` [PATCH v18 12/26] libstdc++: Optimize std::remove_extent compilation performance
    ` [PATCH v18 13/26] c++: Implement __remove_all_extents built-in trait
    ` [PATCH v18 14/26] libstdc++: Optimize std::remove_all_extents compilation performance
    ` [PATCH v18 15/26] c++: Implement __add_lvalue_reference built-in trait
    ` [PATCH v18 16/26] libstdc++: Optimize std::add_lvalue_reference compilation performance
    ` [PATCH v18 17/26] c++: Implement __add_rvalue_reference built-in trait
    ` [PATCH v18 18/26] libstdc++: Optimize std::add_rvalue_reference compilation performance
    ` [PATCH v18 19/26] c++: Implement __decay built-in trait
    ` [PATCH v18 20/26] libstdc++: Optimize std::decay compilation performance
    ` [PATCH v18 21/26] c++: Implement __array_rank built-in trait
    ` [PATCH v18 22/26] libstdc++: Optimize std::rank compilation performance
    ` [PATCH v18 23/26] c++: Implement __is_invocable built-in trait
      ` [PATCH v19 "
        ` [PATCH v20 "
          ` [PATCH v21 20/23] "
    ` [PATCH v18 24/26] libstdc++: Optimize std::is_invocable compilation performance
    ` [PATCH v18 25/26] c++: Implement __is_nothrow_invocable built-in trait
    ` [PATCH v18 26/26] libstdc++: Optimize std::is_nothrow_invocable compilation performance

[PATCH] c++: 'typename T::X' vs 'struct T::X' lookup [PR109420]
 2024-05-03 20:36 UTC  (5+ messages)

[PATCH] DCE __cxa_atexit calls where the function is pure/const [PR19661]
 2024-05-03 20:22 UTC  (3+ messages)

[pushed] c++: initializer_list<string> and EH [PR114935]
 2024-05-03 20:00 UTC 

[PATCH] AARCH64: Add Qualcomnm oryon-1 core
 2024-05-03 19:49 UTC 

[PATCH] sra: Do not leave work for DSE (that it can sometimes not perform)
 2024-05-03 19:18 UTC 

[PATCH] middle-end/114931 - type_hash_canon and structual equality types
 2024-05-03 19:16 UTC  (11+ messages)

[PATCH v2] gcc-14: Mention that some warnings are now errors
 2024-05-03 17:52 UTC  (7+ messages)

[PATCH] Use DW_TAG_module for Ada
 2024-05-03 17:08 UTC 

[patch,avr,applied] PR92606: Don't optimize PROGMEM data against non-PROGMEM
 2024-05-03 16:58 UTC 

[RFA][RISC-V] Enable inlining str* by default
 2024-05-03 16:51 UTC 

[PATCH 0/3] Miscll fixlets
 2024-05-03 16:41 UTC  (14+ messages)
` [PATCH 1/3] docs: rtl: document GET_MODE_INNER
    ` [PATCH v2 "
      ` [Committed 1/2] "
` [PATCH 2/3] RISC-V: miscll comment fixes [NFC]
    ` [Committed 2/2] "
` [PATCH 3/3] combine: initialize a local var

[PATCH] c++: Implement C++26 P2893R3 - Variadic friends [PR114459]
 2024-05-03 16:35 UTC 

[PATCH] Fix auto deduction for template specialization scopes [114915]
 2024-05-03 16:24 UTC  (2+ messages)

Invitation to register as a Vendor
 2024-05-03 15:39 UTC 

[PATCH] c++: replace tf_norm with a local flag
 2024-05-03 15:26 UTC 

[PATCH] aarch64: Fix typo in aarch64-ldp-fusion.cc:combine_reg_notes [PR114936]
 2024-05-03 14:45 UTC 

[PATCH] [ranger] Force buffer alignment in Value_Range [PR114912]
 2024-05-03 14:24 UTC  (3+ messages)

[PATCH] rs6000: Add OPTION_MASK_POWER8 [PR101865]
 2024-05-03 14:04 UTC  (5+ messages)

[r15-124 Regression] FAIL: gcc.target/i386/pr70251.c (test for excess errors) on Linux/x86_64
 2024-05-03 13:55 UTC 

[PATCH] testsuite: fix analyzer C++ failures on Solaris [PR111475]
 2024-05-03 13:51 UTC  (3+ messages)

[PATCH] Add default bitmap obstack allocation check
 2024-05-03 11:26 UTC 

[PATCH v2] Silence two instances of -Wcalloc-transposed-args
 2024-05-03 11:24 UTC  (2+ messages)

[PATCH] libstdc++: Update powerpc-linux-gnu baseline_symbols
 2024-05-03 11:22 UTC  (4+ messages)

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

[PATCH] Avoid changing type in the type_hash_canon hash
 2024-05-03 11:00 UTC  (2+ messages)

[PATCH] PR middle-end/111701: signbit(x*x) vs -fsignaling-nans
 2024-05-03 10:22 UTC  (6+ messages)

[wwwdocs] Add znver5 to GCC 14 changes
 2024-05-03  9:53 UTC  (3+ messages)

[PATCH V4 1/3] aarch64: Place target independent and dependent changed code in one file
 2024-05-03  8:55 UTC  (11+ messages)

[PATCH] tree-inline: Add __builtin_stack_{save,restore} pair about inline calls with calls to alloca [PR113596]
 2024-05-03  7:36 UTC  (2+ messages)

[Backport] ifcvt: Don't lower bitfields with non-constant offsets [PR 111882]
 2024-05-03  6:24 UTC  (2+ messages)

cfgrtl: Fix MEM_EXPR update in duplicate_insn_chain [PR114924]
 2024-05-03  6:17 UTC  (2+ messages)

[PATCH v1] RTL: Bugfix ICE after allow vector type in DSE
 2024-05-03  1:57 UTC  (5+ messages)
` [PATCH v3] DSE: Fix ICE after allow vector type in get_stored_val
` [PATCH v4] "

[PATCH v1] Internal-fn: Introduce new internal function SAT_ADD
 2024-05-03  1:45 UTC  (8+ messages)
` [PATCH v3] "

[committed][RISC-V] Fix nearbyint failure on rv32 and formatting nits
 2024-05-02 23:16 UTC 

[committed] [RISC-V] Improve floor, ceil & related operations for RISC-V
 2024-05-02 22:10 UTC  (3+ messages)

[COMMITTED] Remove obsolete Solaris 11.3 support
 2024-05-02 21:45 UTC  (2+ messages)

[wwwdocs] Porting-to-14: Mention new pragma GCC Target behavior
 2024-05-02 21:39 UTC  (5+ messages)

[PATCH] libgm2: re-generate with autoreconf
 2024-05-02 21:32 UTC  (6+ messages)

[PATCH] libgfortran: Fix up the autoreconf warnings
 2024-05-02 21:30 UTC  (3+ messages)

Gcc
 2024-05-02 21:18 UTC 

[PATCH v13 01/26] c++: Implement __is_const built-in trait
 2024-05-02 20:15 UTC  (21+ messages)
` [PATCH v14 00/26] Optimize more type traits
  ` [PATCH v14 21/26] c++: Implement __rank built-in trait
              ` Trait built-in naming convention

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

[PATCH] jit: Ensure ssize_t is defined
 2024-05-02 19:48 UTC 

[PATCH] Implement _Float16 to bfloat16 conversion with float32
 2024-05-02 19:44 UTC 

[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 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)

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).