aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1998-01-01 07:40:57 -0800
committerRichard Henderson <rth@gcc.gnu.org>1998-01-01 07:40:57 -0800
commit8fbf199e916474fe6783858654dc1eb9c0d06ccc (patch)
tree72356b987b63ac0e6ca2e5d0d2483a96bb167dd5 /gcc
parentaa2ae67960340d03f93f8030a53fc6b7ae65dba5 (diff)
downloadgcc-8fbf199e916474fe6783858654dc1eb9c0d06ccc.zip
gcc-8fbf199e916474fe6783858654dc1eb9c0d06ccc.tar.gz
gcc-8fbf199e916474fe6783858654dc1eb9c0d06ccc.tar.bz2
configure.in: Put parenthesis around TARGET_CPU_DEFAULT's value.
* configure.in: Put parenthesis around TARGET_CPU_DEFAULT's value. * configure: Update. From-SVN: r17277
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4f0f0e8..d8d1901 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jan 1 15:40:15 1998 Richard Henderson <rth@cygnus.com>
+
+ * configure.in: Put parenthesis around TARGET_CPU_DEFAULT's value.
+ * configure: Update.
+
Thu Jan 1 10:49:12 1998 Jeffrey A Law (law@cygnus.com)
* emit-rtl.c (operand_subword): Correctly handle extracting a word
diff --git a/gcc/configure b/gcc/configure
index 00e0b60..11cbd12 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -5636,7 +5636,7 @@ do
# This substitutes for lots of *.h files.
if [ x$target_cpu_default != x -a $link = tm.h ]
then
- echo "#define TARGET_CPU_DEFAULT $target_cpu_default" >>$link
+ echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
fi
for file in `eval echo '$'$var`; do
diff --git a/gcc/configure.in b/gcc/configure.in
index 677ddaf..00f81f4 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -2812,7 +2812,7 @@ do
# This substitutes for lots of *.h files.
if [[ x$target_cpu_default != x -a $link = tm.h ]]
then
- echo "#define TARGET_CPU_DEFAULT $target_cpu_default" >>$link
+ echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
fi
for file in `eval echo '$'$var`; do