summaryrefslogtreecommitdiff
path: root/Modules/_ctypes/libffi/m4/asmcfi.m4
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-02-04 11:08:04 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-02-04 11:08:04 +0200
commit18911ec8482d0c193affe0f968d7ee1d8dae5805 (patch)
treef53ce84564a84d715ddd59f61d5eb51afd32cfef /Modules/_ctypes/libffi/m4/asmcfi.m4
parenteefce02ea410dc1dcb95167c3a62c9dfaaa5bf29 (diff)
parent20d55dda2a4995d33e79acd880c5fccfa54937e4 (diff)
downloadcpython-18911ec8482d0c193affe0f968d7ee1d8dae5805.tar.gz
Issue #27867: Silenced may-be-used-uninitialized warnings after
using PySlice_GetIndicesEx() in debug builds.
Diffstat (limited to 'Modules/_ctypes/libffi/m4/asmcfi.m4')
-rw-r--r--Modules/_ctypes/libffi/m4/asmcfi.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/Modules/_ctypes/libffi/m4/asmcfi.m4 b/Modules/_ctypes/libffi/m4/asmcfi.m4
deleted file mode 100644
index dbf73a0b3e..0000000000
--- a/Modules/_ctypes/libffi/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_TRY_COMPILE([asm (".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
-])