The AArch64 folders tried to update EH info on the fly, bypassing
the folder's attempts to remove dead EH edges later. This triggered
an ICE when folding a potentially-trapping call to a constant.
gcc/
PR target/107209
* config/aarch64/aarch64.cc (aarch64_gimple_fold_builtin): Don't
update EH info on the fly.
gcc/testsuite/
* gcc.target/aarch64/pr107209.c: New test.
Co-Authored-By: Richard Biener <rguenther@suse.de>
if (!new_stmt)
return false;
- gsi_replace (gsi, new_stmt, true);
+ gsi_replace (gsi, new_stmt, false);
return true;
}
--- /dev/null
+/* { dg-options "-O2 -fnon-call-exceptions -fno-tree-fre" } */
+
+#include <arm_neon.h>
+
+float64x1_t
+foo (void)
+{
+ float64_t v1 = 3.14159265359;
+ float64_t v2 = 1.383894;
+ float64_t vec_1_data[] = {v1};
+ float64_t vec_2_data[] = {v2};
+ float64x1_t vec_1 = vld1_f64 (vec_1_data);
+ float64x1_t vec_2 = vld1_f64 (vec_2_data);
+
+ return vmulx_f64 (vec_1, vec_2);
+}