diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-09 18:39:59 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-09 18:39:59 +0000 |
commit | 74a0d9f6a586186cda0bc6bdd60dcd879716a8e9 (patch) | |
tree | 87be7772cb388a460c148b511a18b12b05954eba /gdb/doc | |
parent | 35f0d396520eae5171f1ca089f38ca78b8882300 (diff) | |
download | gdb-74a0d9f6a586186cda0bc6bdd60dcd879716a8e9.zip gdb-74a0d9f6a586186cda0bc6bdd60dcd879716a8e9.tar.gz gdb-74a0d9f6a586186cda0bc6bdd60dcd879716a8e9.tar.bz2 |
gdb/
* configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
* defs.h (LONGEST, ULONGEST): Remove conditionalization for
CC_HAS_LONG_LONG.
* dwarf2-frame.c (DW64_CIE_ID): Likewise.
* dwarf2read.c (extract_cu_value): Remove the function.
(create_cus_from_index_list): Make the return type void, inline the
extract_cu_value caller, include new gdb_static_assert.
(create_cus_from_index): Make the return type void, update the function
comment, update the create_cus_from_index_list caller.
(create_signatured_type_table_from_index): Make the return type void,
inline the extract_cu_value caller, include new gdb_static_assert.
(dwarf2_read_index): Update the create_cus_from_index and
create_signatured_type_table_from_index caller.
* printcmd.c (ui_printf): Remove conditionalizations for
CC_HAS_LONG_LONG.
* config.in: Regenerate.
* configure: Regenerate.
gdb/doc/
* gdbint.texinfo (Host Definition): Remove CC_HAS_LONG_LONG.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 1f4aa55..245826f 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2012-12-09 Jan Kratochvil <jan.kratochvil@redhat.com> + + * gdbint.texinfo (Host Definition): Remove CC_HAS_LONG_LONG. + 2012-11-29 Tom Tromey <tromey@redhat.com> * gdb.texinfo (SVR4 Process Information): Document missing diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 34b0bec..5dbf7bf 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -2761,11 +2761,6 @@ Substitute for isatty, if not available. @item FOPEN_RB Define this if binary files are opened the same way as text files. -@item CC_HAS_LONG_LONG -@cindex @code{long long} data type -Define this if the host C compiler supports @code{long long}. This is set -by the @code{configure} script. - @item PRINTF_HAS_LONG_LONG Define this if the host can handle printing of long long integers via the printf format conversion specifier @code{ll}. This is set by the |