diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-31 08:30:59 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-31 08:30:59 -0400 |
commit | 864ca435655273c773055213f033ba621a9f9b17 (patch) | |
tree | 5c8aad5b4e3d552eed7dba1950c82aaea3835292 /gdbsupport/configure | |
parent | 5164c11714c92ba7690d4f93de6be6a90f460220 (diff) | |
download | binutils-864ca435655273c773055213f033ba621a9f9b17.zip binutils-864ca435655273c773055213f033ba621a9f9b17.tar.gz binutils-864ca435655273c773055213f033ba621a9f9b17.tar.bz2 |
gdbsupport: replace AC_TRY_COMPILE in warning.m4
Replace AC_TRY_COMPILE with AC_COMPILE_IFELSE + AC_LANG_PROGRAM.
All changes in generated configure files are insignificant whitespace
changes.
gdb/ChangeLog:
* configure: Re-generate.
gdbserver/ChangeLog:
* configure: Re-generate.
gdbsupport/ChangeLog:
* configure: Re-generate.
* warning.m4: Replace AC_TRY_COMPILE with AC_COMPILE_IFELSE +
AC_LANG_PROGRAM.
Change-Id: I517bd20ec3af960ad999a586761df0ac8959a3fc
Diffstat (limited to 'gdbsupport/configure')
-rwxr-xr-x | gdbsupport/configure | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdbsupport/configure b/gdbsupport/configure index 904403d..1452b35 100755 --- a/gdbsupport/configure +++ b/gdbsupport/configure @@ -10306,13 +10306,14 @@ $as_echo_n "checking compiler warning flags... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ struct scoped_restore_base {}; - struct scoped_restore_tmpl : public scoped_restore_base { - ~scoped_restore_tmpl() {} - }; + struct scoped_restore_tmpl : public scoped_restore_base { + ~scoped_restore_tmpl() {} + }; int main () { const scoped_restore_base &b = scoped_restore_tmpl(); + ; return 0; } |