On Wed, Jun 10, 2020 at 04:27:27PM -0600, Jeff Law wrote:
> On Mon, 2019-07-22 at 12:39 -0400, Arvind Sankar wrote:
> > The gcc configure script does not use the config/picflag.m4 macro to
> > customize PICFLAG according to the host when using --enable-host-shared.
> >
>
Hi any feedback on this?
Thanks.
On Tue, Jul 23, 2019 at 02:49:13PM -0400, Arvind Sankar wrote:
> There seems to be a typo in gcc/jit/Make-lang.in where it references an
> undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
> ---
> gcc/jit/Make-lang.in | 5 ++---
>
Resending and adding the jit list.
There seems to be a typo in gcc/jit/Make-lang.in where it references an
undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
---
gcc/jit/Make-lang.in | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gcc/jit/Make-lang.in b/gcc/
On Fri, Aug 02, 2019 at 12:49:56PM -0500, Segher Boessenkool wrote:
> On Fri, Aug 02, 2019 at 01:38:21PM -0400, Arvind Sankar wrote:
> > Hi, I have taken a crack at the beginner GCC project mentioned at
> > https://gcc.gnu.org/projects/beginner.html to replace uses of GET_CO
gelog) comments:
>
> On Mon, Aug 05, 2019 at 01:09:10PM -0400, Arvind Sankar wrote:
> > * gcc/alias.c, gcc/asan.c, gcc/bb-reorder.c, gcc/bt-load.c: Use
> > predicate macros for rtx_code comparisons.
>
> Many of your changelog lines are much too long. Don't use more
On Mon, Aug 05, 2019 at 01:29:26PM -0500, Segher Boessenkool wrote:
> On Mon, Aug 05, 2019 at 02:14:50PM -0400, Arvind Sankar wrote:
> > On Mon, Aug 05, 2019 at 12:48:46PM -0500, Segher Boessenkool wrote:
> > > > -/* Predicate yielding true iff X is an
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* rtl.h: Fix comment for CONST_DOUBLE_AS_FLOAT_P and move
it together with the other CONST_DOUBLE predicates.
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 039ab05f951..28b5a82d651 100644
Here's the patches split up. The ones that say autogenerated were
generated from the script below.
I haven't included that as a patch yet since not sure about the
copyright/licensing boilerplate to insert in it.
contrib/rtl-pred.sh:
#!/bin/sh
#
codes="CONST_INT|CONST_WIDE_INT|CONST_FIXED|CONST
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* combine-stack-adj.c: Convert GET_CODE (..) == CONST_INT
to CONST_INT_P (..).
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gcc/combine-stack-adj.c b/gcc/combine-stack-adj.c
index 3638a1b10ee..f98a0d54c98 100644
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* config/darwin.c: Convert GET_CODE (..) == CONST_WIDE_INT
to CONST_WIDE_INT_P (..).
* config/s390/s390.c: Likewise.
* rtlanal.c: Likewise.
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gcc
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* common.md: Convert GET_CODE (..) == CONST_VECTOR to
CONST_VECTOR_P (..).
* config/aarch64/aarch64.c: Likewise.
* config/alpha/alpha.c: Likewise.
* config/arc/arc.c: Likewise.
* config/arc
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* rtl.h: Add a predicate macro for checking CONST_VECTOR.
1 file changed, 3 insertions(+)
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 28b5a82d651..45e2b85867d 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -818,6 +818,9 @@ struct GTY
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* config/avr/avr.c: Convert GET_CODE (..) == CONST_STRING to
CONST_STRING_P (..).
* dwarf2out.c: Likewise.
* genattrtab.c: Likewise.
* gensupport.c: Likewise.
4 files changed, 15 insertions(+), 15
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* cfgexpand.c: Convert GET_CODE (..) == CONST_FIXED
to CONST_FIXED_P.
* config/spu/spu.c: Likewise.
* varasm.c: Likewise.
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/gcc/cfgexpand.c b/gcc
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* rtlanal.c: Convert GET_CODE (..) == LABEL_REF to
LABEL_REF_P (..).
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c
index cb6c8902353..a8becc85047 100644
--- a/gcc/rtlanal.c
+++ b/gcc
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* rtl.h: Add a predicate macro for checking CONST_STRING.
1 file changed, 3 insertions(+)
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 45e2b85867d..d02772b65be 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -821,6 +821,9 @@ struct GTY
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* config/aarch64/aarch64.c: Convert
GET_CODE (..) == CONST_DOUBLE to CONST_DOUBLE_P (..).
* config/aarch64/aarch64.md: Likewise.
* config/arc/arc.c: Likewise.
* config/arc/arc.md: Likewise
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* alias.c: Convert GET_CODE (..) == LABEL_REF to
LABEL_REF_P (..).
* bb-reorder.c: Likewise.
* cfgbuild.c: Likewise.
* cfgexpand.c: Likewise.
* cfgrtl.c: Likewise.
* combine.c: Likewise
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* dwarf2out.c: Convert GET_CODE (..) == SYMBOL_REF to
SYMBOL_REF_P (..).
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index b2b4f6d82b2..ea38963d177 100644
--- a/gcc/dwarf2out.c
2019-08-05 Arvind Sankar
gcc/ChangeLog:
* reload1.c: Convert GET_CODE (..) == DEBUG_INSN to
DEBUG_INSN_P (..).
* reorg.c: Likewise.
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gcc/reload1.c b/gcc/reload1.c
index 1a68d0567fc..d30badc0c4f
On Thu, Aug 08, 2019 at 10:42:06AM -0600, Jeff Law wrote:
> On 8/5/19 12:29 PM, Segher Boessenkool wrote:
> > On Mon, Aug 05, 2019 at 02:14:50PM -0400, Arvind Sankar wrote:
> >> On Mon, Aug 05, 2019 at 12:48:46PM -0500, Segher Boessenkool wrote:
> >>> First: do y
The gcc configure script does not use the config/picflag.m4 macro to
customize PICFLAG according to the host when using --enable-host-shared.
Fix configure.ac to do so.
Tested bootstrap on x86_64-linux-gnu.
2019-07-22 Arvind Sankar
* gcc/configure.ac: Use GCC_PICFLAG.
---
gcc
Hi, SVN rev 273311 appears to have been committed without regenerating
gcc/config*?
Thanks.
On Tue, Jul 23, 2019 at 10:31:16AM -0600, Martin Sebor wrote:
> On 7/23/19 10:11 AM, Arvind Sankar wrote:
> > Hi, SVN rev 273311 appears to have been committed without regenerating
> > gcc/config*?
>
> That commit wasn't meant to change the configure script since
&g
There seems to be a typo in gcc/jit/Make-lang.in where it references an
undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
---
gcc/jit/Make-lang.in | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gcc/jit/Make-lang.in b/gcc/jit/Make-lang.in
index 660f54d78bd..
Hi, I've been playing some with the PGO build infrastructure and have a
few changes I thought I'd share and get feedback on whether they're
completely crazy or not. I'm not terribly familiar with the innards of
the build infra, so would appreciate any comments and suggestions.
First, a recap of th
26 matches
Mail list logo