summaryrefslogtreecommitdiff
path: root/m4/labels-as-values.m4
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2008-08-26 13:52:20 -0700
committerAndy Wingo <wingo@pobox.com>2008-08-26 13:52:20 -0700
commit515bc96855c1795843d972a74c0e0d439e2153f6 (patch)
tree3297185a43216edcbaa68fb2f2d38b5ad279e074 /m4/labels-as-values.m4
parent1976ad74b8fdfadd1b6b5c0884cc1f0b9bb9a2b2 (diff)
downloadguile-515bc96855c1795843d972a74c0e0d439e2153f6.tar.gz
m4 quoting foo in labels-as-values.m4.
* m4/labels-as-values.m4: More m4 quoting love. Patch from C. K. Jester-Young <cky944 <at> gmail.com>.
Diffstat (limited to 'm4/labels-as-values.m4')
-rw-r--r--m4/labels-as-values.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/labels-as-values.m4 b/m4/labels-as-values.m4
index eedfb553a..3cf7320bd 100644
--- a/m4/labels-as-values.m4
+++ b/m4/labels-as-values.m4
@@ -1,5 +1,5 @@
dnl check for gcc's "labels as values" feature
-AC_DEFUN(AC_C_LABELS_AS_VALUES,
+AC_DEFUN([AC_C_LABELS_AS_VALUES],
[AC_CACHE_CHECK([labels as values], ac_cv_labels_as_values,
[AC_TRY_COMPILE([
int foo(int);
@@ -15,7 +15,7 @@ l2: return 2;
ac_cv_labels_as_values=yes,
ac_cv_labels_as_values=no)])
if test "$ac_cv_labels_as_values" = yes; then
-AC_DEFINE(HAVE_LABELS_AS_VALUES, [],
+AC_DEFINE([HAVE_LABELS_AS_VALUES], [],
[Define if compiler supports gcc's "labels as values" (aka computed goto)
feature, used to speed up instruction dispatch in the interpreter.])
fi