Up to [cvs.NetBSD.org] / src / usr.bin / xlint / common
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.35 / (download) - annotate - [select for diffs], Mon Feb 7 21:57:47 2022 UTC (11 months, 3 weeks ago) by rillig
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.34: +6 -14
lines
Diff to previous 1.34 (colored)
lint: drop compatibility with C90 Since tools/README 1.5 from 2022-02-03, the tools no longer need to be compatible with C90, they may now use C99 features. Lint had used <stdbool.h> and snprintf already. No functional change.
Revision 1.34 / (download) - annotate - [select for diffs], Wed Dec 22 14:49:11 2021 UTC (13 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.33: +7 -7
lines
Diff to previous 1.33 (colored)
lint: remove spaces around bit-field colon As seen in /usr/share/misc/style. No binary change.
Revision 1.33 / (download) - annotate - [select for diffs], Mon Nov 1 19:48:51 2021 UTC (15 months ago) by rillig
Branch: MAIN
Changes since 1.32: +14 -6
lines
Diff to previous 1.32 (colored)
lint: enter full C90 compatibility mode The C99 comment in tree.c:3468 has been there since 2017-03-06, without anyone complaining that their compiler would not handle it. Strangely, running GCC 10.3.0 in '-std=c90' mode does not complain about declarations after statements, '-Wdeclaration-after-statement' is needed separately. No functional change.
Revision 1.32 / (download) - annotate - [select for diffs], Sun Sep 5 18:17:15 2021 UTC (16 months, 4 weeks ago) by rillig
Branch: MAIN
Changes since 1.31: +5 -1
lines
Diff to previous 1.31 (colored)
lint: hide irrelevant type information from lint2 No functional change.
Revision 1.31 / (download) - annotate - [select for diffs], Sun Aug 29 09:29:32 2021 UTC (17 months ago) by rillig
Branch: MAIN
Changes since 1.30: +3 -1
lines
Diff to previous 1.30 (colored)
lint: allow 'fallthrough' as alternative spelling of FALLTHROUGH Seen in unbound/lookup3.c. No change to the documentation since the canonical spelling is still the same.
Revision 1.30 / (download) - annotate - [select for diffs], Sat Aug 28 12:59:25 2021 UTC (17 months ago) by rillig
Branch: MAIN
Changes since 1.29: +4 -4
lines
Diff to previous 1.29 (colored)
lint: use 'unsigned int' for bit-size of types Lint does not need to support any types larger than 256 MB since they don't occur in practice. Practically, such large types have never been supported at all since the function type_size_in_bits used int for the internal calculations, resulting in overflows.
Revision 1.29 / (download) - annotate - [select for diffs], Sun Aug 22 15:06:49 2021 UTC (17 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.28: +3 -1
lines
Diff to previous 1.28 (colored)
lint: only include code in the binaries that is actually used No functional change.
Revision 1.28 / (download) - annotate - [select for diffs], Tue Aug 10 17:31:44 2021 UTC (17 months, 3 weeks ago) by rillig
Branch: MAIN
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (colored)
lint: clean up comments
Revision 1.27 / (download) - annotate - [select for diffs], Sat Apr 10 18:36:27 2021 UTC (21 months, 3 weeks ago) by rillig
Branch: MAIN
CVS Tags: cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Changes since 1.26: +6 -2
lines
Diff to previous 1.26 (colored)
lint: use distinct struct tags for type_t in lint1 and lint2 Having two similar but still different definitions of 'struct type' is unnecessarily confusing. Exchange this confusion for 8 lines of straight-forward preprocessing code.
Revision 1.26 / (download) - annotate - [select for diffs], Sun Feb 28 18:51:51 2021 UTC (23 months ago) by rillig
Branch: MAIN
Changes since 1.25: +6 -6
lines
Diff to previous 1.25 (colored)
lint: rename members and access macros of the basic types Having the measurement unit in the variable name prevents accidental confusion between bits and bytes, especially since usually the word 'size' means the size in bytes, while 'width' means the size in bits, at least for integer types. No functional change.
Revision 1.25 / (download) - annotate - [select for diffs], Sat Jan 16 02:40:02 2021 UTC (2 years ago) by rillig
Branch: MAIN
Changes since 1.24: +11 -1
lines
Diff to previous 1.24 (colored)
lint: replace 0 and 1 with false and true, where appropriate Change in behavior: Passing the option -h exactly 4294967296 times or any multiple thereof is no longer equivalent to passing it never at all, it is now equivalent to passing it once. See main2.c, hflag++ for the actual change. Other than that, no functional change intended. A very large portion of the code already conformed to the requirements of the strict bool mode. The only missing thing was using the constant literals false and true instead of 0 and 1. For sure there are some integer literals left that can be converted. For now, all literals that appeared in the form " = 0" or " = 1" have been replaced.
Revision 1.24 / (download) - annotate - [select for diffs], Sun Jan 10 00:05:45 2021 UTC (2 years ago) by rillig
Branch: MAIN
Changes since 1.23: +11 -11
lines
Diff to previous 1.23 (colored)
lint: rename type classification macros The previous names tspec_is_int and tspec_is_uint were confusing because there are actually tspec_t constants called INT and UINT, these classification macros return true for other integer types as well, though. While here, remove the prefix "tspec_" from these macros. It wasn't as helpful as intended, in many cases it was obviously redundant, when it was called as tspec_is_integer(tn->tn_type->t_tspec). No functional change.
Revision 1.23 / (download) - annotate - [select for diffs], Mon Jan 4 01:12:20 2021 UTC (2 years ago) by rillig
Branch: MAIN
Changes since 1.22: +0 -8
lines
Diff to previous 1.22 (colored)
lint: revert previous commit, except for the typo
Revision 1.22 / (download) - annotate - [select for diffs], Mon Jan 4 01:11:01 2021 UTC (2 years ago) by rillig
Branch: MAIN
Changes since 1.21: +9 -1
lines
Diff to previous 1.21 (colored)
lint: fix typo in comment
Revision 1.21 / (download) - annotate - [select for diffs], Sat Jan 2 01:06:15 2021 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.20: +9 -8
lines
Diff to previous 1.20 (colored)
lint: use bool instead of u_int:1 in structures Better late than never.
Revision 1.20 / (download) - annotate - [select for diffs], Fri Jan 1 11:58:03 2021 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.19: +5 -5
lines
Diff to previous 1.19 (colored)
lint: rename styp and utyp
Revision 1.19 / (download) - annotate - [select for diffs], Fri Jan 1 11:51:15 2021 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.18: +6 -7
lines
Diff to previous 1.18 (colored)
lint: remove NTSPEC from enum tspec_t The number of elements in an enumeration is not a valid enum constant of that enumeration itself.
Revision 1.18 / (download) - annotate - [select for diffs], Wed Dec 30 10:46:11 2020 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.17: +2 -2
lines
Diff to previous 1.17 (colored)
lint: rename more _nxt members to _next
Revision 1.17 / (download) - annotate - [select for diffs], Mon Dec 28 21:24:55 2020 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored)
lint: spell check
Revision 1.16 / (download) - annotate - [select for diffs], Mon Dec 28 18:49:02 2020 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.15: +17 -17
lines
Diff to previous 1.15 (colored)
lint: rename tspec macros
Revision 1.15 / (download) - annotate - [select for diffs], Mon Dec 28 18:06:23 2020 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (colored)
lint: fix typo in comment
Revision 1.13.46.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:10:26 2019 UTC (3 years, 7 months ago) by christos
Branch: phil-wifi
Changes since 1.13: +5 -1
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
Sync with HEAD
Revision 1.13.44.1 / (download) - annotate - [select for diffs], Sun Sep 30 01:45:59 2018 UTC (4 years, 4 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.13: +5 -1
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
Ssync with HEAD
Revision 1.14 / (download) - annotate - [select for diffs], Fri Sep 7 15:16:15 2018 UTC (4 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
netbsd-9-base,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
is-mlppp-base,
is-mlppp
Changes since 1.13: +5 -1
lines
Diff to previous 1.13 (colored)
recognize int128
Revision 1.12.6.1 / (download) - annotate - [select for diffs], Wed May 13 19:20:13 2009 UTC (13 years, 8 months ago) by jym
Branch: jym-xensuspend
Changes since 1.12: +3 -3
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Sync with HEAD. Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
Revision 1.13 / (download) - annotate - [select for diffs], Wed Apr 15 01:20:57 2009 UTC (13 years, 9 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-tag8,
yamt-pagecache-base9,
yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
tls-maxphys-base,
tls-maxphys,
tls-earlyentropy-base,
tls-earlyentropy,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2,
prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
phil-wifi-base,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
pgoyette-compat-base,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
netbsd-8-base,
netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
netbsd-8,
netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-base,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE,
netbsd-7-0,
netbsd-7,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
netbsd-6,
matt-premerge-20091211,
matt-nb8-mediatek-base,
matt-nb8-mediatek,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
matt-mips64-premerge-20101231,
localcount-20160914,
jym-xensuspend-nbase,
jym-xensuspend-base,
cherry-xenmp-base,
cherry-xenmp,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2,
agc-symver-base,
agc-symver
Branch point for: phil-wifi,
pgoyette-compat
Changes since 1.12: +3 -3
lines
Diff to previous 1.12 (colored)
Lukemify (WARNS=4)
Revision 1.12 / (download) - annotate - [select for diffs], Fri Sep 26 22:52:24 2008 UTC (14 years, 4 months ago) by matt
Branch: MAIN
CVS Tags: netbsd-5-base,
netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2
Branch point for: jym-xensuspend
Changes since 1.11: +3 -2
lines
Diff to previous 1.11 (colored)
Teach lint about long double _Complex (C99)
Revision 1.10.2.1 / (download) - annotate - [select for diffs], Sun May 18 12:36:11 2008 UTC (14 years, 8 months ago) by yamt
Branch: yamt-pf42
Changes since 1.10: +6 -1
lines
Diff to previous 1.10 (colored) next main 1.11 (colored)
sync with head.
Revision 1.11 / (download) - annotate - [select for diffs], Fri Apr 25 22:18:34 2008 UTC (14 years, 9 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
hpcarm-cleanup-nbase
Changes since 1.10: +6 -1
lines
Diff to previous 1.10 (colored)
preliminary _Complex support. NB: Does not really understand type conversions between complex and doubles.
Revision 1.10 / (download) - annotate - [select for diffs], Sun Mar 30 22:28:41 2008 UTC (14 years, 10 months ago) by dholland
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base
Branch point for: yamt-pf42
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
Add a little const.
Revision 1.9 / (download) - annotate - [select for diffs], Thu Apr 7 16:28:40 2005 UTC (17 years, 10 months ago) by christos
Branch: MAIN
CVS Tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
matt-armv6-nbase,
matt-armv6-base,
matt-armv6,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf,
chap-midi-nbase,
chap-midi-base,
chap-midi,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Changes since 1.8: +3 -1
lines
Diff to previous 1.8 (colored)
Factor out tyname() so that it can be used both by lint1 and lint2. Since type_t is different between lint1.h and lint2.h include the appropriate file depending on the pass. Make the argument mismatch error print the type names of the types involved. Now that we have a tyname() function we can fix the rest of the pass2 warnings to be more explanatory, but not now.
Revision 1.8 / (download) - annotate - [select for diffs], Sun Sep 12 08:58:52 2004 UTC (18 years, 4 months ago) by yamt
Branch: MAIN
CVS Tags: netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
recognize _Bool.
Revision 1.7 / (download) - annotate - [select for diffs], Mon Oct 27 00:12:44 2003 UTC (19 years, 3 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Changes since 1.6: +3 -3
lines
Diff to previous 1.6 (colored)
Overhaul how `build.sh tools' are used: * Rename "config.h" to "nbtool_config.h" and HAVE_CONFIG_H to HAVE_NBTOOL_CONFIG_H. This makes in more obvious in the source when we're using tools/compat/config.h versus "standard autoconf" config.h * Consistently move the inclusion of nbtool_config.h to before <sys/cdefs.h> so that the former can provide __RCSID() (et al), and there's no need to protect those macros any more. These changes should make it easier to "tool-ify" a program by adding: #if HAVE_NBTOOL_CONFIG_H #include "nbtool_config.h" #endif to the top of the source files (for the general case).
Revision 1.6 / (download) - annotate - [select for diffs], Thu Mar 7 19:19:14 2002 UTC (20 years, 11 months ago) by tv
Branch: MAIN
CVS Tags: netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6,
fvdl_fs64_base
Changes since 1.5: +2 -6
lines
Diff to previous 1.5 (colored)
Revert previous; <inttypes.h> is auto-generated-empty now.
Revision 1.5 / (download) - annotate - [select for diffs], Thu Mar 7 18:29:56 2002 UTC (20 years, 11 months ago) by tv
Branch: MAIN
Changes since 1.4: +6 -2
lines
Diff to previous 1.4 (colored)
Autoconf bracket #include <inttypes.h>.
Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 5 03:04:26 2002 UTC (21 years ago) by thorpej
Branch: MAIN
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
Replace u_quad_t with uint64_t and quad_t with int64_t, and use <inttypes.h> to get those type definitions. These types are more portable, and a little more sane to do autoconf tests for.
Revision 1.3 / (download) - annotate - [select for diffs], Thu Jan 31 22:44:00 2002 UTC (21 years ago) by tv
Branch: MAIN
Changes since 1.2: +2 -6
lines
Diff to previous 1.2 (colored)
Roll in fixes to permit cross-compiling from non-NetBSD hosts. This round has been tested on Solaris/x86 and Linux hosts. * Add host tools cap_mkdb, ctags, m4, uudecode. * Protect __RCSID() and __COPYRIGHT() better. * Reduce the number of places that need to include "config.h", to keep sources closer to their "vanilla" versions. * Add more compat #defines and autoconf-checked functions.
Revision 1.2 / (download) - annotate - [select for diffs], Mon Jan 21 19:49:51 2002 UTC (21 years ago) by tv
Branch: MAIN
Changes since 1.1: +13 -2
lines
Diff to previous 1.1 (colored)
Add hooks for compiling on non-NetBSD hosts.
Revision 1.1 / (download) - annotate - [select for diffs], Fri Jan 18 20:39:23 2002 UTC (21 years ago) by thorpej
Branch: MAIN
* Move stuff shared between lint1 and lint2 to the new common/ directory. * Move the arch/ directory out of lint1/ into the top-level.