aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.ac
diff options
context:
space:
mode:
authorPhil Edwards <phil@codesourcery.com>2004-07-11 05:43:45 +0000
committerPhil Edwards <pme@gcc.gnu.org>2004-07-11 05:43:45 +0000
commitd2640b9193baca97158dbc0050ae5d7e293fee70 (patch)
tree5195a43143e50eb2df7bda0c55551b504dfea14d /gcc/configure.ac
parentd817041f34ce9db2323babb6c8270fbda7f0acf2 (diff)
downloadgcc-d2640b9193baca97158dbc0050ae5d7e293fee70.zip
gcc-d2640b9193baca97158dbc0050ae5d7e293fee70.tar.gz
gcc-d2640b9193baca97158dbc0050ae5d7e293fee70.tar.bz2
configure.ac: Alphabetize --enable-checking list, add missing valgrind entry.
2004-07-11 Phil Edwards <phil@codesourcery.com> * configure.ac: Alphabetize --enable-checking list, add missing valgrind entry. * configure: Regenerate. From-SVN: r84495
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r--gcc/configure.ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 7535bc9..2029b7b 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -384,8 +384,8 @@ AC_ARG_ENABLE(checking,
[ --enable-checking[=LIST]
enable expensive run-time checks. With LIST,
enable only specific categories of checks.
- Categories are: misc,tree,rtl,rtlflag,gc,gcac,fold;
- default is misc,tree,gc,rtlflag],
+ Categories are: fold,gc,gcac,misc,rtlflag,rtl,
+ tree,valgrind; default is gc,misc,rtlflag,tree],
[ac_checking=
ac_tree_checking=
ac_rtl_checking=
@@ -403,13 +403,13 @@ no) ;;
for check
do
case $check in
+ fold) ac_fold_checking=1 ;;
+ gc) ac_gc_checking=1 ;;
+ gcac) ac_gc_always_collect=1 ;;
misc) ac_checking=1 ;;
- tree) ac_tree_checking=1 ;;
rtlflag) ac_rtlflag_checking=1 ;;
rtl) ac_rtl_checking=1 ;;
- gc) ac_gc_checking=1 ;;
- gcac) ac_gc_always_collect=1 ;;
- fold) ac_fold_checking=1 ;;
+ tree) ac_tree_checking=1 ;;
valgrind) ac_checking_valgrind=1 ;;
*) AC_MSG_ERROR(unknown check category $check) ;;
esac