aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2022-04-29 10:26:24 -0700
committerH.J. Lu <hjl.tools@gmail.com>2022-05-02 11:38:23 -0700
commit7e1f30d7edd433ca0fc28ae9ac1ce9b522790baf (patch)
tree7ab46a853b819a64cd17f5917e206ee7c5e4dc15
parent198bd0d599e0a91df1cfa6ab37545d05dff48e97 (diff)
downloadgcc-7e1f30d7edd433ca0fc28ae9ac1ce9b522790baf.zip
gcc-7e1f30d7edd433ca0fc28ae9ac1ce9b522790baf.tar.gz
gcc-7e1f30d7edd433ca0fc28ae9ac1ce9b522790baf.tar.bz2
x86: Add missing .note.GNU-stack to assembly source
Add .note.GNU-stack assembly source to avoid linker warning: ld: warning: /tmp/ccPZSZ7Z.o: missing .note.GNU-stack section implies executable stack ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker FAIL: gcc.target/i386/iamcu/test_3_element_struct_and_unions.c compilation, -O0 PR testsuite/105433 * gcc.target/i386/iamcu/asm-support.S: Add .note.GNU-stack. * gcc.target/x86_64/abi/asm-support.S: Likewise. * gcc.target/x86_64/abi/avx/asm-support.S: Likewise. * gcc.target/x86_64/abi/avx512f/asm-support.S: Likewise. * gcc.target/x86_64/abi/avx512fp16/asm-support.S: Likewise. * gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S: Likewise. * gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S: Likewise. * gcc.target/x86_64/abi/ms-sysv/do-test.S: Likewise.
-rw-r--r--gcc/testsuite/gcc.target/i386/iamcu/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/avx/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/avx512f/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S1
-rw-r--r--gcc/testsuite/gcc.target/x86_64/abi/ms-sysv/do-test.S1
8 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/iamcu/asm-support.S b/gcc/testsuite/gcc.target/i386/iamcu/asm-support.S
index b4a4a14..db08f52 100644
--- a/gcc/testsuite/gcc.target/i386/iamcu/asm-support.S
+++ b/gcc/testsuite/gcc.target/i386/iamcu/asm-support.S
@@ -300,3 +300,4 @@ iamcu_noprintf:
.align 4
.LCiamcu_noprintf1:
.long 1132527616
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S
index 7a8ed03..2f8d3a09 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S
@@ -82,3 +82,4 @@ snapshot_ret:
.comm xmm_regs,256,32
.comm x87_regs,128,32
.comm volatile_var,8,8
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/avx/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/avx/asm-support.S
index 73a5919..77b3480 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/avx/asm-support.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/avx/asm-support.S
@@ -79,3 +79,4 @@ snapshot_ret:
.comm ymm_regs,512,32
.comm x87_regs,128,32
.comm volatile_var,8,8
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/avx512f/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/avx512f/asm-support.S
index 0ef8287..2e3306c 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/avx512f/asm-support.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/avx512f/asm-support.S
@@ -95,3 +95,4 @@ snapshot_ret:
.comm zmm_regs,2048,64
.comm x87_regs,128,32
.comm volatile_var,8,8
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/asm-support.S
index 7849acd..0793acf 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/asm-support.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/asm-support.S
@@ -79,3 +79,4 @@ snapshot_ret:
.comm xmm_regs,256,32
.comm x87_regs,128,32
.comm volatile_var,8,8
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S
index 73a5919..77b3480 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S
@@ -79,3 +79,4 @@ snapshot_ret:
.comm ymm_regs,512,32
.comm x87_regs,128,32
.comm volatile_var,8,8
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S
index 0ef8287..2e3306c 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S
@@ -95,3 +95,4 @@ snapshot_ret:
.comm zmm_regs,2048,64
.comm x87_regs,128,32
.comm volatile_var,8,8
+ .section .note.GNU-stack,"",@progbits
diff --git a/gcc/testsuite/gcc.target/x86_64/abi/ms-sysv/do-test.S b/gcc/testsuite/gcc.target/x86_64/abi/ms-sysv/do-test.S
index 7b891a1..f5dff4c 100644
--- a/gcc/testsuite/gcc.target/x86_64/abi/ms-sysv/do-test.S
+++ b/gcc/testsuite/gcc.target/x86_64/abi/ms-sysv/do-test.S
@@ -30,6 +30,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#ifdef __ELF__
# define FN_TYPE(fn) .type fn,@function
# define FN_SIZE(fn) .size fn,.-fn
+ .section .note.GNU-stack,"",@progbits
#else
# define FN_TYPE(fn)
# define FN_SIZE(fn)