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: Adjust empty class parameter passing ABI (PR c++/60336)


On Mon, Nov 13, 2017 at 11:32:14AM +0100, Marek Polacek wrote:
> 	* g++.dg/abi/pr68355.C: New test.

This testcase FAILs on i686-linux, my understanding is that the ABI
changed only if TARGET_64BIT on x86_64/i686-linux.

The following patch fixes it for me, ok for trunk?

2017-11-22  Jakub Jelinek  <jakub@redhat.com>

	* g++.dg/abi/pr68355.C: Don't expect tail call on ia32.

--- gcc/testsuite/g++.dg/abi/pr68355.C.jj	2017-11-22 21:37:44.000000000 +0100
+++ gcc/testsuite/g++.dg/abi/pr68355.C	2017-11-22 21:44:13.220962389 +0100
@@ -21,4 +21,4 @@ yyy (void)
   xxx (y);
 }
 
-// { dg-final { scan-assembler "jmp\[\t \]+\[^\$\]*?_Z3xxx17integral_constantIbLb1EE" { target i?86-*-* x86_64-*-* } } }
+// { dg-final { scan-assembler "jmp\[\t \]+\[^\$\]*?_Z3xxx17integral_constantIbLb1EE" { target { { i?86-*-* x86_64-*-* } && { ! ia32 } } } } }


	Jakub


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