]> git.draconx.ca Git - cdecl99.git/commit
Better probe for __int64 support.
authorNick Bowler <nbowler@draconx.ca>
Thu, 29 Feb 2024 03:52:00 +0000 (22:52 -0500)
committerNick Bowler <nbowler@draconx.ca>
Thu, 29 Feb 2024 03:52:00 +0000 (22:52 -0500)
commitb1900b8ec11a1e8ff8705330ed9da66e4bd98ee1
treee166eb5d7b8feaf3022dbc994db640571d3b8787
parentcb4da2b973ce208490cb4c54da26a5e245e495a5
Better probe for __int64 support.

In an expression like sizeof (unsigned garbage), the VAX C compiler
warns but otherwise ignores the garbage identifier, treating it the
same as sizeof (unsigned).  Thus, the AC_CHECK_TYPES probe gives a
false positive result on this compiler.

The test can be improved by using the fourth argument to add a real
object declaration to the test program.
configure.ac