- avoid-cycling-on-vertain-subreg-reloads.patch: Add patch source comment - change-gcc-BASE-VER.patch: Likewise - dont-generate-IF_THEN_ELSE.patch: Likewise - fix-ICE-in-compute_live_loop_exits.patch: Likewise - fix-ICE-in-eliminate_stmt.patch: Likewise - fix-ICE-in-vect_create_epilog_for_reduction.patch: Likewise - fix-ICE-in-vect_stmt_to_vectorize.patch: Likewise - fix-ICE-in-verify_ssa.patch: Likewise - fix-ICE-when-vectorizing-nested-cycles.patch: Likewise - fix-cost-of-plus.patch: Likewise - ipa-const-prop-self-recursion-bugfix.patch: Likewise - simplify-removing-subregs.patch: Likewise - medium-code-mode.patch: Bugfix - fix-when-peeling-for-alignment.patch: Move to ... - fix-PR-92351-When-peeling-for-alignment.patch: ... this - AArch64-Fix-constraints-for-CPY-M.patch: New file - Apply-maximum-nunits-for-BB-SLP.patch: New file - Fix-EXTRACT_LAST_REDUCTION-segfault.patch: New file - Fix-up-push_partial_def-little-endian-bitfield.patch: New file - Fix-zero-masking-for-vcvtps2ph.patch: New file - IRA-Handle-fully-tied-destinations.patch: New file - SLP-VECT-Add-check-to-fix-96837.patch: New file - aarch64-Fix-ash-lr-lshr-mode-3-expanders.patch: New file - aarch64-Fix-bf16-and-matrix-g++-gfortran.patch: New file - aarch64-Fix-mismatched-SVE-predicate-modes.patch: New file - aarch64-fix-sve-acle-error.patch: New file - adjust-vector-cost-and-move-EXTRACT_LAST_REDUCTION-costing.patch: New file - bf16-and-matrix-characteristic.patch: New file - fix-ICE-IPA-compare-VRP-types.patch: New file - fix-ICE-in-affine-combination.patch: New file - fix-ICE-in-pass-vect.patch: New file - fix-ICE-in-vect_update_misalignment_for_peel.patch: New file - fix-addlosymdi-ICE-in-pass-reload.patch: New file - fix-an-ICE-in-vect_recog_mask_conversion_pattern.patch: New file - fix-avx512vl-vcvttpd2dq-2-fail.patch: New file - fix-issue499-add-nop-convert.patch: New file - fix-issue604-ldist-dependency-fixup.patch: New file - modulo-sched-Carefully-process-loop-counter-initiali.patch: New file - re-PR-target-91124-gcc.target-i386-avx512vl-vpshldvd.patch: New file - reduction-paths-with-unhandled-live-stmt.patch: New file - redundant-loop-elimination.patch: New file - sccvn-Improve-handling-of-load-masked-with-integer.patch: New file - speed-up-DDG-analysis-and-fix-bootstrap-compare-debug.patch: New file - store-merging-Consider-also-overlapping-stores-earlier.patch: New file - tree-optimization-96920-another-ICE-when-vectorizing.patch: New file - tree-optimization-97812-fix-range-query-in-VRP-asser.patch: New file - vectorizable-comparison-Swap-operands-only-once.patch: New file - x86-Fix-bf16-and-matrix.patch: New file
52 lines
1.4 KiB
Diff
52 lines
1.4 KiB
Diff
This backport contains 1 patch from gcc main stream tree.
|
|
The commit id of these patchs list as following in the order of time.
|
|
|
|
0001-IPA-compare-VRP-types.patch
|
|
a86623902767122c71c7229150a8b8a79cbb3673
|
|
|
|
diff -Nurp a/gcc/ipa-prop.c b/gcc/ipa-prop.c
|
|
--- a/gcc/ipa-prop.c 2020-11-28 00:19:34.340000000 +0800
|
|
+++ b/gcc/ipa-prop.c 2020-11-28 00:21:24.680000000 +0800
|
|
@@ -122,7 +122,8 @@ struct ipa_vr_ggc_hash_traits : public g
|
|
static bool
|
|
equal (const value_range_base *a, const value_range_base *b)
|
|
{
|
|
- return a->equal_p (*b);
|
|
+ return (a->equal_p (*b)
|
|
+ && types_compatible_p (a->type (), b->type ()));
|
|
}
|
|
static void
|
|
mark_empty (value_range_base *&p)
|
|
diff -Nurp a/gcc/testsuite/gcc.c-torture/execute/pr97404.c b/gcc/testsuite/gcc.c-torture/execute/pr97404.c
|
|
--- a/gcc/testsuite/gcc.c-torture/execute/pr97404.c 1970-01-01 08:00:00.000000000 +0800
|
|
+++ b/gcc/testsuite/gcc.c-torture/execute/pr97404.c 2020-11-28 00:21:24.680000000 +0800
|
|
@@ -0,0 +1,28 @@
|
|
+/* PR ipa/97404 */
|
|
+/* { dg-additional-options "-fno-inline" } */
|
|
+
|
|
+char a, b;
|
|
+long c;
|
|
+short d, e;
|
|
+long *f = &c;
|
|
+int g;
|
|
+char h(signed char i) { return 0; }
|
|
+static short j(short i, int k) { return i < 0 ? 0 : i >> k; }
|
|
+void l(void);
|
|
+void m(void)
|
|
+{
|
|
+ e = j(d | 9766, 11);
|
|
+ *f = e;
|
|
+}
|
|
+void l(void)
|
|
+{
|
|
+ a = 5 | g;
|
|
+ b = h(a);
|
|
+}
|
|
+int main()
|
|
+{
|
|
+ m();
|
|
+ if (c != 4)
|
|
+ __builtin_abort();
|
|
+ return 0;
|
|
+}
|