This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [SFN+LVU+IEPM v4 9/9] [IEPM] Introduce inline entry point markers


On Fri, Mar 09, 2018 at 09:48:45AM +0000, Bin.Cheng wrote:
> On Wed, Feb 28, 2018 at 6:17 AM, Alexandre Oliva <aoliva@redhat.com> wrote:
> > On Feb 21, 2018, Alexandre Oliva <aoliva@redhat.com> wrote:
> >
> >> On Feb 15, 2018, Szabolcs Nagy <szabolcs.nagy@arm.com> wrote:
> >>> i see assembler slow downs with these location view patches
> >>> i opened https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84408
> >
> >
> >> [LVU] reset view at function entry, omit views at line zero
> >
> > Ping?  https://gcc.gnu.org/ml/gcc-patches/2018-02/msg01224.html
> 
> Hi,
> The new test case failed on aarch64-none-elf, aarch64_be-none-elf and
> arm-none-eabi ,
> which are all bare-metal toolchains with below message:
> 
> xgcc: error: unrecognized command line option '-pthread'
> 
> I assume pthread is unavailable on such targets if it's required.

I think this ought to fix it, committed as obvious:

2018-03-09  Jakub Jelinek  <jakub@redhat.com>

	PR debug/84404
	* gcc.dg/graphite/pr84404.c: Only compile on pthread effective
	targets.

--- gcc/testsuite/gcc.dg/graphite/pr84404.c.jj	2018-03-08 21:53:46.096560261 +0100
+++ gcc/testsuite/gcc.dg/graphite/pr84404.c	2018-03-09 10:54:49.605773196 +0100
@@ -1,4 +1,5 @@
-/* { dg-do compile } */
+/* PR debug/84404 */
+/* { dg-do compile { target pthread } } */
 /* { dg-options "-O2 -ftree-parallelize-loops=2 -floop-nest-optimize -g" } */
 
 int te[9];


	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]