summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2022-09-01 08:57:13 -0400
committerAnthony Green <green@moxielogic.com>2022-09-01 08:57:13 -0400
commit9b58d4bad688820fa9bb077c0ec5f5949ac18bd2 (patch)
tree607ba71aacb530cfc865f915c8cb98e893bc1a0d /m4
parente6d05bea0b4c350edaaf215a81f49298f34b10e4 (diff)
downloadlibffi-9b58d4bad688820fa9bb077c0ec5f5949ac18bd2.tar.gz
GCC_AS_CFI_PSEUDO_OP passes on msvc, although it's not sufficient.
Diffstat (limited to 'm4')
-rw-r--r--m4/asmcfi.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/m4/asmcfi.m4 b/m4/asmcfi.m4
deleted file mode 100644
index 21bd952..0000000
--- a/m4/asmcfi.m4
+++ /dev/null
@@ -1,13 +0,0 @@
-AC_DEFUN([GCC_AS_CFI_PSEUDO_OP],
-[AC_CACHE_CHECK([assembler .cfi pseudo-op support],
- gcc_cv_as_cfi_pseudo_op, [
- gcc_cv_as_cfi_pseudo_op=unknown
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]],[[asm (".cfi_sections\n\t.cfi_startproc\n\t.cfi_endproc");]])],
- [gcc_cv_as_cfi_pseudo_op=yes],
- [gcc_cv_as_cfi_pseudo_op=no])
- ])
- if test "x$gcc_cv_as_cfi_pseudo_op" = xyes; then
- AC_DEFINE(HAVE_AS_CFI_PSEUDO_OP, 1,
- [Define if your assembler supports .cfi_* directives.])
- fi
-])