diff options
author | Alan Modra <amodra@gmail.com> | 2014-07-04 15:06:40 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-07-04 15:06:40 +0930 |
commit | 1110793abe7dca4b2092e69da0d5356eb4b25c77 (patch) | |
tree | da955ad6b60a9af1d90595cce47cdaf9b2502d03 /gas | |
parent | 35eafcc71b8a54330704656fb6df0b5d6665ed15 (diff) | |
download | gdb-1110793abe7dca4b2092e69da0d5356eb4b25c77.zip gdb-1110793abe7dca4b2092e69da0d5356eb4b25c77.tar.gz gdb-1110793abe7dca4b2092e69da0d5356eb4b25c77.tar.bz2 |
Update "configure.in" in comments and doco
bfd/
* Makefile.am: Update "configure.in" comments.
* PORTING: Likewise.
* aoutx.h: Likewise.
* configure.host: Likewise.
* doc/bfdint.texi: Likewise.
* targets.c: Likewise.
* warning.m4: Likewise.
* Makefile.in: Regenerate.
gas/
* doc/internals.texi: Update "configure.in" comments.
* acinclude.m4: Likewise.
* config/tc-sparc.c: Likewise.
ld/
* configure.ac: Update "configure.in" comments.
* configure: Regenerate.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/acinclude.m4 | 2 | ||||
-rw-r--r-- | gas/config/tc-sparc.c | 2 | ||||
-rw-r--r-- | gas/doc/internals.texi | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 96307e8..f2f25f2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,11 @@ 2014-07-04 Alan Modra <amodra@gmail.com> + * doc/internals.texi: Update "configure.in" comments. + * acinclude.m4: Likewise. + * config/tc-sparc.c: Likewise. + +2014-07-04 Alan Modra <amodra@gmail.com> + * configure.ac: Rename from configure.in. * Makefile.in: Regenerate. * config.in: Regenerate. diff --git a/gas/acinclude.m4 b/gas/acinclude.m4 index 40722c6..9864abe 100644 --- a/gas/acinclude.m4 +++ b/gas/acinclude.m4 @@ -37,7 +37,7 @@ test $gas_cv_assert_ok = yes || AC_DEFINE(BROKEN_ASSERT, 1, [assert broken?]) ])dnl dnl dnl Since many Bourne shell implementations lack subroutines, use this -dnl hack to simplify the code in configure.in. +dnl hack to simplify the code in configure.ac. dnl GAS_UNIQ(listvar) AC_DEFUN([GAS_UNIQ], [_gas_uniq_list="[$]$1" diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 5b0baad..b5e9704 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -262,7 +262,7 @@ static struct sparc_arch { { "v9d", "v9b", v9, 0, 1, HWCAP_MUL32|HWCAP_DIV32|HWCAP_FSMULD|HWCAP_POPC|HWCAP_VIS|HWCAP_VIS2|HWCAP_ASI_BLK_INIT|HWCAP_FMAF|HWCAP_VIS3|HWCAP_HPC }, { "v9e", "v9b", v9, 0, 1, HWCAP_MUL32|HWCAP_DIV32|HWCAP_FSMULD|HWCAP_POPC|HWCAP_VIS|HWCAP_VIS2|HWCAP_ASI_BLK_INIT|HWCAP_FMAF|HWCAP_VIS3|HWCAP_HPC|HWCAP_AES|HWCAP_DES|HWCAP_KASUMI|HWCAP_CAMELLIA|HWCAP_MD5|HWCAP_SHA1|HWCAP_SHA256|HWCAP_SHA512|HWCAP_MPMUL|HWCAP_MONT|HWCAP_CRC32C|HWCAP_CBCOND|HWCAP_PAUSE }, { "v9v", "v9b", v9, 0, 1, HWCAP_MUL32|HWCAP_DIV32|HWCAP_FSMULD|HWCAP_POPC|HWCAP_VIS|HWCAP_VIS2|HWCAP_ASI_BLK_INIT|HWCAP_FMAF|HWCAP_VIS3|HWCAP_HPC|HWCAP_RANDOM|HWCAP_TRANS|HWCAP_FJFMAU|HWCAP_IMA|HWCAP_ASI_CACHE_SPARING|HWCAP_AES|HWCAP_DES|HWCAP_KASUMI|HWCAP_CAMELLIA|HWCAP_MD5|HWCAP_SHA1|HWCAP_SHA256|HWCAP_SHA512|HWCAP_MPMUL|HWCAP_MONT|HWCAP_CRC32C|HWCAP_CBCOND|HWCAP_PAUSE }, - /* This exists to allow configure.in/Makefile.in to pass one + /* This exists to allow configure.tgt to pass one value to specify both the default machine and default word size. */ { "v9-64", "v9", v9, 64, 0, HWCAP_MUL32|HWCAP_DIV32|HWCAP_FSMULD|HWCAP_POPC }, { NULL, NULL, v8, 0, 0, 0 } diff --git a/gas/doc/internals.texi b/gas/doc/internals.texi index 76f812d..cc4089b 100644 --- a/gas/doc/internals.texi +++ b/gas/doc/internals.texi @@ -730,7 +730,7 @@ all the fixups (@code{fixup_segment}), resolves all the symbol values (using @cindex porting Each GAS target specifies two main things: the CPU file and the object format -file. Two main switches in the @file{configure.in} file handle this. The +file. Two main switches in the @file{configure.ac} file handle this. The first switches on CPU type to set the shell variable @code{cpu_type}. The second switches on the entire target to set the shell variable @code{fmt}. |