aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <jlaw@ventanamicro.com>2023-06-13 11:46:32 -0600
committerJeff Law <jlaw@ventanamicro.com>2023-06-13 11:48:13 -0600
commitb15d46e8057bf58b5e021011ee6e0c07d6cdf712 (patch)
tree9d3cbe78760718e3209d045efa6c25f634eb4d4d /gcc
parent99dec205a12f7dfa39fd43fc7c36d9974aaec526 (diff)
downloadgcc-b15d46e8057bf58b5e021011ee6e0c07d6cdf712.zip
gcc-b15d46e8057bf58b5e021011ee6e0c07d6cdf712.tar.gz
gcc-b15d46e8057bf58b5e021011ee6e0c07d6cdf712.tar.bz2
Remove a couple mudflap remnants
I happened to be digging into the specs to understand a build failure and spotted mflib and mfwrap. Those were used by the mudflap system which we ripped out years ago and we just missed these. I verified x86 still bootstraps after removing these bits. Pushed to the trunk as obvious, gcc/ * gcc.cc (LINK_COMMAND_SPEC): Remove mudflap spec handling.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/gcc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcc.cc b/gcc/gcc.cc
index 2ccca00..38155f8 100644
--- a/gcc/gcc.cc
+++ b/gcc/gcc.cc
@@ -1146,12 +1146,12 @@ proper position among the other output files. */
"%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
"%X %{o*} %{e*} %{N} %{n} %{r}\
%{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
- %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
+ %{static|no-pie|static-pie:} %@{L*} %(link_libgcc) " \
VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
%{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
%:include(libgomp.spec)%(link_gomp)}\
%{fgnu-tm:%:include(libitm.spec)%(link_itm)}\
- %(mflib) " STACK_SPLIT_SPEC "\
+ " STACK_SPLIT_SPEC "\
%{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
%{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
%{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*} \n%(post_link) }}}}}}"