8sa1-gcc/gcc
Jeff Law 6fdb556ec0 pa-hpux.h (LINK_SPEC): Disable linking against shared libraries.
* pa-hpux.h (LINK_SPEC): Disable linking against shared libraries.
	 * pa-ghpux.h (LINK_SPEC): Likewise.

From-SVN: r2732
1992-11-10 07:55:54 -07:00
..
config pa-hpux.h (LINK_SPEC): Disable linking against shared libraries. 1992-11-10 07:55:54 -07:00
ginclude
objc (build_message_expr): Don't crash if super_type is 0. 1992-11-09 17:42:55 +00:00
assert.h
basic-block.h
build-make
c-aux-info.c
c-common.c
c-convert.c
c-decl.c (finish_decl): Don't clear DECL_INITIAL in inline fn decls. 1992-11-08 02:48:04 +00:00
c-lang.c
c-lex.c
c-lex.h
c-parse.gperf
c-parse.in
c-pragma.c
c-tree.h
c-typeck.c (process_init_constructor): Strip NOP_EXPR from indices. 1992-11-10 14:20:47 +00:00
caller-save.c (save_call_clobbered_regs): Ensure any insns we add 1992-11-09 20:07:35 +00:00
calls.c
cccp.c
cexp.y
collect2.c
combine.c
conditions.h
config.sub
configure.bat
cpp.1
cross-make
crtstuff.c
cse.c
dbxout.c (dbxout_symbol): Give name ` ' to unnamed enums. 1992-11-07 03:56:24 +00:00
dbxstclass.h
defaults.h
dostage2
dostage3
dwarf.h
dwarfout.c
emit-rtl.c
enquire.c
explow.c
expmed.c
expr.c (emit_move_insn): Do return a value, in complex case. 1992-11-07 20:30:00 +00:00
expr.h
final.c
fixcpp
fixinc.svr4 Avoid use of | in sed regexp; use multiple s commands. 1992-11-09 07:25:45 +00:00
fixincludes (EXINIT): Use `set'. 1992-11-08 19:54:50 +00:00
flags.h
flow.c
fold-const.c
function.c
function.h
gbl-ctors.h
gcc.c
genattr.c
genattrtab.c
gencodes.c
genconfig.c
genemit.c
genextract.c
genflags.c
genoutput.c
genpeep.c
genrecog.c
getpwd.c
glimits.h
global.c
gsyms.h
gsyslimits.h
halfpic.c
halfpic.h
hard-reg-set.h
input.h
integrate.c
integrate.h
jump.c
libgcc1.c
libgcc2.c
limitx.h
limity.h
local-alloc.c
longlong.h
loop.c
loop.h
machmode.def
machmode.h
make-cc1.com
make-cccp.com
make-gcc.com
make-l2.com
Makefile.in
mips-tdump.c
mips-tfile.c
optabs.c (init_libfuncs): Add casts when comparing/incrementing enum. 1992-11-06 21:04:59 +00:00
output.h
pcp.h
print-rtl.c (reg_names): Make it static. Use DEBUG_REGISTER_NAMES if that's defined. 1992-10-14 04:23:52 +00:00
print-tree.c
PROBLEMS
PROJECTS
protoize.c
README-fixinc
README.TRAD
real.h
recog.c
recog.h
reg-stack.c
regclass.c
regs.h
reload1.c
reload.c
reload.h
reorg.c
rtl.c
rtl.def
rtl.h
rtlanal.c
sched.c
sdbout.c
sort-protos
stack.h
stmt.c
stor-layout.c
stupid.c
sys-protos.h
sys-types.h
toplev.c (main): Use strncmp when testing for gstabs+ vs gstabs. 1992-11-09 20:10:20 +00:00
tree.c
tree.h
typeclass.h
unprotoize.c
unroll.c (final_biv_value): Make a note after loop_end 1992-11-09 20:03:13 +00:00
varasm.c (immed_real_const_1, immed_double_const): Fix typos in last change. 1992-11-07 20:31:36 +00:00
vmsconfig.com
xcoffout.c
xcoffout.h

This is a partial list of how `gcc -traditional' disagrees with
traditional C compilers (perhaps only some of them).  Most of these
differences are not bugs.

---------------------------------------------------------------------------
K&R-1 (2.4.3) says:

	"If the character following a backslash is not one of those
	specified {in the table above}, the backslash is ignored."

Up until recently, `gcc -traditional' complained about \x \a and \v
appearing in a character or string literal.  I believe however that
this non-feature has been eliminated (recently).

---------------------------------------------------------------------------
When in -traditional mode, gcc allows the following erroneous pair of
declarations to appear together in a given scope:

	typedef int foo;
	typedef foo foo;

---------------------------------------------------------------------------
K&R-1 (8.5) says:

	"No field may be wider than a word."

Gcc however allows:

	struct S { int i:33; };

---------------------------------------------------------------------------
In K&R-1 there is no restriction against comments crossing include file
boundaries.  Gcc however doesn't allow this, even when in -traditional mode.

---------------------------------------------------------------------------
Regarding the length of identifiers, K&R-1 (2.2) says:

	"No more than the first eight characters are significant,
	although more may be used."

Gcc treats all characters of identifiers as significant, even when in
-traditional mode.

---------------------------------------------------------------------------
K&R-1 (2.2) says:

	"An identifier is a sequence of letters and digits; the first
	character must be a letter.  The underscore _ counts as a letter."

Gcc also allows dollar signs in identifiers.  (This may also be an issue
for the -pedantic option.)

---------------------------------------------------------------------------