From 4757c55cc5f7babba6abed2a88773eb41b1d92f3 Mon Sep 17 00:00:00 2001 From: hjl Date: Tue, 4 Aug 2015 11:54:20 +0000 Subject: [PATCH] Compile IAMCU tests with -fno-pie -no-pie Since IAMCU tests clear all scratch integer registers with: asm __volatile__ ("xor %%eax, %%eax\n\t" \ "xor %%edx, %%edx\n\t" \ "xor %%ecx, %%ecx\n\t" \ ::: "eax", "edx", "ecx"); PIC register may be trashed between setting PIC register and using it. This patch compiles AMCU tests with -fno-pie -no-pie. PR target/67110 * gcc.target/i386/iamcu/abi-iamcu.exp (additional_flags): Add -fno-pie -no-pie. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226570 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/testsuite/ChangeLog | 6 ++++++ gcc/testsuite/gcc.target/i386/iamcu/abi-iamcu.exp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fb22e07ed6e..69b511a849f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-08-04 H.J. Lu + + PR target/67110 + * gcc.target/i386/iamcu/abi-iamcu.exp (additional_flags): Add + -fno-pie -no-pie. + 2015-08-04 Paolo Carlini PR c++/66427 diff --git a/gcc/testsuite/gcc.target/i386/iamcu/abi-iamcu.exp b/gcc/testsuite/gcc.target/i386/iamcu/abi-iamcu.exp index b5b3261039a..8bcee0fce05 100644 --- a/gcc/testsuite/gcc.target/i386/iamcu/abi-iamcu.exp +++ b/gcc/testsuite/gcc.target/i386/iamcu/abi-iamcu.exp @@ -29,7 +29,7 @@ if { (![istarget x86_64-*-linux*] && ![istarget i?86-*-linux*]) torture-init set-torture-options $C_TORTURE_OPTIONS -set additional_flags "-miamcu -W -Wall -Wno-abi" +set additional_flags "-miamcu -W -Wall -Wno-abi -fno-pie -no-pie" foreach src [lsort [glob -nocomplain $srcdir/$subdir/test_*.c]] { if {[runtest_file_p $runtests $src]} { -- 2.11.4.GIT