Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/pcc/dist Update pcc to current [0.9.9 20100603]...



details:   https://anonhg.NetBSD.org/src/rev/3645a87f3b64
branches:  trunk
changeset: 755379:3645a87f3b64
user:      plunky <plunky%NetBSD.org@localhost>
date:      Thu Jun 03 18:57:00 2010 +0000

description:
Update pcc to current [0.9.9 20100603] version. There have been many
bugfixes and feature additions, full changelog is below. The major
feature I think was the GCC compatibility which is now enabled by
default, with many of the commonly used GCC attributes and builtin
functions now supported, and pcc defines __GNUC__ as version 4.3

This version can build all of bin/, sbin/ and games/ except for dab(5),
with only a few outstanding issues in usr.bin/ and usr.sbin/. There are
still issues with PIC code generation (affects building libraries, on
i386 at least) and I have not tried applying pcc to kernel builds.

ChangeLog, in most-recent first order, screen-scraped from
    http://pcc.ludd.ltu.se/fisheye/changelog/pcc

Each paragraph is a separate commit, the [xxx] refers to the module
that the following commits were in:

[ccom]
    Fix designated initializer bug as reported by Iain Hibbert on pcc-list.

    Put in prototype for dainit() to avoid warnings when using yacc.

    Discard parameter attributes, they ended up to be handled as arguments
    otherwise.  Suppose to fix Jira#PCC-132 by Iain Hibbert.

    Rewrite __builtin_offsetof() to handle non-constant array offset values.
    This actually made the offsetof code much simpler.
    Requested by Iain Hibbert on pcc-list.

    Op DOT will be BINODE.

    Support gcc ugly construction a?:b, as discussed on pcc-list.

    Add gcc compat range initializers, reported by Iain Hibbert.

[amd64]
    Do not put eax as hidden argument if not needed.

    Better support for the Intel addressing modes.  Now ByteBench only takes
    77% of the earlier time to complete.

[mip]
    Do not base hash functions on memory addresses.  These addresses may
    change between different compilations and we want predictability.
    Also check if an address of a node is lower than expected to avoid
    short-range temporaries in the Freeze() code.

[i386]
    Clear flags field on TEMP nodes so that function pointers will get their
    stack adjusted afterwards, otherwise there might be junk left.

[ccom]
    Aet alignment to at least ALCHAR for structs when passing them over to
    pass2.  Failure to do so caused bug spotted by Iain Hibbert.

[sparc64]
    Fix string init bug, from Lars Zetterlund.

[mip]
    Declare printip2() as static function for whole file, as pointed out by
    Iain Hibbert.

[ccom]
    Make the canary value on stack volatile, so that the compiler won't
    try to put it into a register.  Solves stack overwrite error reported
    by Iain Hibbert on pcc-list.

[i386]
    Fix uninitialized member bug in picsymtab breaking -k -g.  Suppose to fix
    Jira#PCC-138 by Nicolas Joly, patch provided by Iain Hibbert.

[ccom]
    Tell scan to ignore typedefs of the same names goto labels. Fixes
    Jira#PCC-141 by Andreas Kaiser with recommended fix from him.

[mip]
    Run deljumps again after the ssa pass to cleanup the code before doing
    register allocation.

[mip]
    Do liveness analysis before turning a function into SSA code, and later
    use that to to find out whether we need to insert a phi function or not.
    This is usually called "Pruned SSA".
    Now the SSA code tend to be significantly better quality.

    Fix deljumps label updating bug.
    Remove statements that are moves to itself in deljumps.

[libpcc]
    Define _VA_LIST_DEFINED for compatibility eglibc headers.
    From tg%mirbsd.de@localhost.

[ccom]
    Ensure CM towers are built to the left, fixes parsing bug pointed put
    by Jonathan Gray. Also add "used" attribute.

[mip]
    Teach dce() to remove ip structs without destroying the basic block
    structure.

[ccom]
    Check if type is an array before checking its dimension.  Fixes bug
    reported by Iain Hibbert on pcc-list.

[i386]
    Tell table to prefer 2-op insns before 3-op.

    Do not try to match args on builtins.

[mip]
    Do not favorize 3-op instruction in the ssa case, simple statements
    like i++ have been rewritten to t1 = t2 + 1 and we want the register
    allocator to try to put t1 and t2 in the same register if there are
    2-op insns.

    Help coloring algorithm by at the time of assigning registers see if
    there are any frozen moves to nodes that have already got their color
    and we can give this node the same register.
    This will avoid unneccessary moves.

    Move list init into the function that initializes it.

    Put two more variables into p2env, to have a cleaner way of passing
    information in the optimizer phase.

    Fix broken indentation.

    Do not put a move on the move list more than once.
    Count precolored nodes as infinite K, not 0, otherwise it may make
    colorable graphs uncolorable when there are many moves.

[ccom]
    Fix reporting on bogus error of struct parameters, as reported by Iain
    Hibbert on pcc-list.

[amd64]
    Remove cast of pointer converted ints, not needed on amd64.  Fixes
    Jira#PCC-136 by Nicholas Joly.

[ccom]
    Add and handle gcc attribute __warn_unused_result__.  Requested by Iain
    Hibbert but with a different implementation.

    Do not allow initialization of multi-dimension incomplete arrays, fixes
    bug reported by Jesus Sanchez on pcc-list.
    Also fix another bug spotted, which had as a result that dynamic-sized
    arrays initialized by strings did not become null-terminated.

[amd64]
    amd64 cannot handle imemdiate constants for 64-bit simple ops.
    Fixes Jira#PCC-134 by Nicolas Joly.

[ccom]
    Allow any expression inside typeof.  Supposes to fix Jira#PCC-135
    by Iain Hibbert.

[mip]
    Replace deljumps() with the stuff used in the 2BSD c2.
    Still some parts to implement though.

[i386]
    Yech, yesterdays worst thinko about where to put the return check for
    floats.  Now awk works again.

    Use SSTDCALL, not FSTDCALL for symtab entries.  Spotted by Iain Hibbert.

    Reorganize late mangle code a little.  Now stdcall should work.

[mip]
    Remove some #if 0'ed code that is phased out.

[i386]
    The n_flags fields should use NLOCALx defines, not hardcoded numbers.
    Found by Iain Hibbert.

[ccom]
    Check for NaN string is only valid for ICON nodes.  Bug found by
    Iain Hibbert.

[i386]
    Detect the situation where a function returns a float number but the
    return value is ignored; the float stack must be popped anyway.
    FIxes a bug in awk where the float stack overflows.

[ccom]
    Clear out symtab pointers for NAME and ICON nodes in functions to
    be inlined, since accessing them will result in crashes.  Fixes
    stdcall/ccall bugs reported by Iain Hibbert.

[ccom, i386]
    Add support for stdcall and cdecl attributes.  Patch from iain Hibbert.

[ccom]
    Remove redundant GETSUE() define, from Iain Hibbert.

    Fix yet another situation where attributes causes warnings.
    Reported and slightly modified patch from Iain Hibbert.

    Handling of argument to scalinit() was incorrect causing wrong type to
    be returned.  Fixes Jira#PCC-131 by Iain Hibbert.

    Fix problem with offsetof of zero-length arrays and a debug segfault.
    Fixes Jira#PCC-129 by Iain Hibbert.

    Fix checking of struct sizes.  Solves Jira#PCC-128 by Iain Hibbert.

    Remove redundant check that caused function names beginning with L to
    be treated as wide strings in __func__.  Patch from Iain Hibbert.

[amd64]
    Add last memcpy for function returning structs.  Should be complete now.

[configure]
    Set default wchar type to int instead of unsigned.

[cc]
    Fix wchar defines as requested by Iain Hibbert.

[cpp]
    One more comment-handling bug found by Iain Hibbert.

    Forgot to null-terminate yytext.  Bug pointed out by Iain Hibbert.

[ccom]
    No reason not to allow pointers larger than LONG, as pointed out by
    Peter Kuschnerus.

    Cast 0x80 to char to avoid a warning.  Fixes compiler warning as
    reported by Peter Kuschnerus.

[amd64]
    Add arg count index to builtin switch table.

[ccom]
    Fix segfault bug, found and patch provided by Iain Hibbert.
    While here, make the switch table const.

    Do not segfault if the string given to __builtin_nan is a NULL pointer.
    Bug reported by Iain Hibbert.

[ccom]
    Discard comments in yylex() so that -C works even with comments in
    #if directives.  Supposes to fix Jira#PCC-126 by Iain Hibbert.

    Add huge/inf/nan builtins as requested by Iain Hibbert.
    Also add a generic builtin function, based on a slightly modified
    version of a patch by Iain Hibbert.

    Add another cast routine which will cast without adding a "cast" and
    therefore it will complain if it's a bad cast (like int to pointer).

[amd64]
    Fix bugs where int should be long.  Fixes Jira#PCC-125 by Nicholas Joly.

[ccom]
    Break out buintins to their own file.  Common argument count check
    for builtins. Should have argument cast checks here also.

[i386]
    Add support for attribute "visibility".

[amd64]
    Do not emit visibility type "default" since it's ``default''.

    Print out visibility directives for as.

[ccom]
    Add attribute support for visibility per patch from Iain Hibbert.

[i386]
    Add support for constructor/destructor attribute.
    XXX defloc() should be possible elf-common code.

[amd64]
    Add con/destructor support. XXX pragma init/fini should be MI.

[ccom]
    Add con/destructor as attributes per patch from Iain Hibbert.
    Different target implementations though.

[amd64]
    Fix struct argument/return bugs.  Add PIC support.

[ccom]
    Change some forgotten code to find the bottom type size; since type
    sizes are not directly inherited anymore.  Fixes coredump bug by
    Iain Hibbert.

[cc, cpp, ccom]
    Fix arrows from joerg@netbsd via plunky on pcc-list.

    Escape some dashes and use an em-dash (noted by Thorsten).

    Fix broken markup in manpages (from plunky on pcc-list).

[ccom]
    Add __builtin_memset, per patch from Iain Hibbert.

[i386]
    Remove unused variable, as Iain Hibbert kindly informed.

    Remove unused (and irrelevant) statement.

[ccom]
    Add cast() function that is an easier-to-use wrapper around buildtree().


[ccom, mip]
    kill some commons; ragge@ ok

[cpp]
    Allow # alone on lines, as requested by Mickey.

[ccom]
    Accept gcc attributes after a gcc asm() rename directive. Bugfix
    provided by Iain Hibbert.  Supposed to fix Jira#PCC-104.

    Implement __builtin_memcpy().  Now pcc can compile itself again on OS X.

    Add support for variable renaming when assingning; i.e.
            int foo asm("bar") = 2;
    and not only
            int foo asm("bar");
    Should fix Jira#PCC-116 by Altamiranus.

    Add support for attribute modes SF, DF, byte, word, pointer.
    Should fix Jira#PCC-114 by Altamiranus.

    Understand QI mode attribute as CHAR.  Fixes Jira#PCC-113 by Altamiranus.

    Understand function attributes pure and const.  Fixes Jira#PCC-110 and
    Jira#PCC-111 by Altamiranus.

[cpp]
    Fix const usage.  From Iain Hibbert.

[mip]
    License (and small code) change in the code repository where the
    function basename() came from.  From Iain Hibbert.

[sparc64]
    Correct format strings and STASG return register.
    Addresses PCC-107 and PCC-108 from Dmitry Alenichev.

[i386]
    Remove unused locals on non-openbsd builds.

[cc]
    Don't define __GNUC__ on win32 until problems with header files are
    resolved.

[ccom]
    Add my local changes for building with the Microsoft compiler.

    Add support for attribute mode and some mode types. Should solve
    Jira#PCC-101 by Detlef Riekenberg.

[cpp]
    Print out an extra \n before emitting a new line-file directive.
    Solves Jira#PCC-97 by Gregory McGarry.

[ccom]
    Add gcc attribute nothrow as patch in Jira#PCC-102 by Detlef Riekenberg.

[cpp]
    Understand gcc directive #include_next. Solves Jira#PCC-106 by Altamiranus.

[ccom]
    Handle more cases of attribute.  Adds another shift/reduce conflict.

    Understand malloc attribute and ignore it, we do not do aliasing yet.

    Handle sizes of pointers to forward declarated strust/unions better.

[i386]
    Print out constants in the same radix as gcc, to simplify debugging.

    Correct return values of STASG.

[mip]
    STASG must be treaded as ASSIGN in sanity checks.

[i386, amd64]
    generate symbol types and section attributes for elf; ragge@ ok

[ccom]
    Ueck, forgot some debug printouts :-(

    Handling of attribute strings was broken; they were treated as names.
    Reported by Michael Shalayeff who provided a diff, but fixed in a more
    common way.

[i386]
    Fix bug causing comparision of two long-long values to sometimes fail
    (low-order values must be compared unsigned). Reported by Jonathan Gray.
    Also fix a bug in struct assignment causing broken code to be generated.

[cc]
    Get GCC_COMPAT from configure.

    At last - defined __GNUC__ etc.  and also __GNUC_STDC_INLINE__.

[mip]
    Only try to shortcut the conditional code generation if the operands are
    of types +-*/%&|^>><<, otherwise side effects may be lost.  Bug found
    by Jonathan Gray.

[ccom]
    Add the g77 types, for compatibility.

[amd64]
    Give 32-bit register to movl instruction.  Fixes Jira#PCC-100 by
    Dara Hazeghi.

    Allow moving of TEMPs to regs. Fixes Jira#PCC-99 by Dara Hazeghi.

[sparc64]
    Sparc64 patches from Lars Zetterlund.  Are supposed to fix Jira#PCC-20.

[ccom]
    Add __builtin_offset(), which is becoming more and more common.
    Suggedted by Jonathan Gray.

[csu]
    Use 'test -f' rather than 'test -e' for improved portability.
    From Adam Hoka.

[powerpc]
    Improve alignment.

[linux]
    Improve building of shared libraries on linux.  Tested on Ubuntu 8.04.

[libpcc]
    Remove definition of off_t, since it is frequently wrong.  Confirmed OK on
    Ubuntu 8.04, OSX and Win32.

[i386]
    Fix alignments on OSX.

[tests]
    Get test to work on win32.

    Don't use __attribute__ in this test, since most systems will define it
    away if not gcc.

[mip]
    Change static array to allocated linked list for temporaries not allowed
    to be spilled.  libssl seems to make a heavy use of extended assembler.
    Bug reported by Jonathan Gray.

[i386]
    dd support for gcc xasm arg types I, J, K, L, M, N.  Fixes Jira#PCC-96
    by Jonathan Gray.

[ccom]
    kill unused variables; ragge@ ok

[hppa]
    fix merge error

[ccom]
    Put back nocon_e, creates better yacc code.

[hppa]
    fixx fallout form walkf() change and other gcc bitchings

    add pragma support (from amd64 ;)

[powerpc, i386, arm, amd64, mips]
    Return to the text segment after putting reference in constructor table.
    Should fix PCC-65.

[ccom]
    Rearrange yacc code slightly to avoid a shift/reduce conflict, that
    could cause unwanted syntax errors.

    Giving multiple declarations of the same prototype failed if there
    were dynamic arrays as arguments.

    Fix bug in debug printout of prototype parameters.

    Accept [*] as [] in prototypes.  Fixes Jira#PCC-94 by Jonathan Gray.

[mip]
    Must add moves before and after a +r xasm directive even if the node
    is in a temporary; the temporary may need to be spilled.

diffstat:

 external/bsd/pcc/dist/pcc-libs/Makefile.in                             |     3 +-
 external/bsd/pcc/dist/pcc-libs/csu/Makefile.in                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/csu/README                              |     3 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/common.c                     |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/common.h                     |     3 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/crt0.c                  |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/dylib1.c                |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/macho.h                      |     3 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/crt0.c               |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/dylib1.c             |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crt0.c                  |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crti.c                  |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crtn.c                  |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/common.c                      |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/common.h                      |     3 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/crtbegin.c                    |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/crtend.c                      |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crt0.c                   |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crti.c                   |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crtn.c                   |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/netbsd/common.h                     |     3 +-
 external/bsd/pcc/dist/pcc-libs/csu/netbsd/crtbegin.c                   |     6 +-
 external/bsd/pcc/dist/pcc-libs/csu/netbsd/crtend.c                     |     6 +-
 external/bsd/pcc/dist/pcc-libs/libF77/abort_.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_abs.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_cos.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_div.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_exp.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_log.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_sin.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/c_sqrt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/cabs.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/complex                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_abs.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_acos.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_asin.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_atan.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_atn2.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_cnjg.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_cos.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_cosh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_dim.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_erf.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_erfc.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_exp.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_imag.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_int.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_lg10.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_log.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_mod.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_nint.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_prod.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_sign.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_sin.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_sinh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_sqrt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_tan.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/d_tanh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/erf.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/getarg_.c                        |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_abs.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_dim.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_dnnt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_indx.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_len.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_mod.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_nint.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/h_sign.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/hl_ge.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/hl_gt.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/hl_le.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/hl_lt.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_abs.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_dim.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_dnnt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_indx.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_len.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_mod.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_nint.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/i_sign.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/iargc_.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/l_ge.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/l_gt.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/l_le.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/l_lt.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/main.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_ci.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_dd.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_di.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_hh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_ii.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_ri.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_zi.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/pow_zz.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_abs.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_acos.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_asin.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_atan.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_atn2.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_cnjg.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_cos.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_cosh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_dim.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_erf.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_erfc.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_exp.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_imag.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_int.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_lg10.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_log.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_mod.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_nint.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_sign.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_sin.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_sinh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_sqrt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_tan.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/r_tanh.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/s_cat.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/s_cmp.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/s_copy.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/s_paus.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/s_rnge.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/s_stop.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/signal_.c                        |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/sinh.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/tanh.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_abs.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_cos.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_div.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_exp.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_log.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_sin.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libF77/z_sqrt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/backspace.c                      |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/close.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/dfe.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/due.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/endfile.c                        |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/err.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/fio.h                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/fmt.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/fmt.h                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/fmtlib.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/iio.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/inquire.c                        |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/lib.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/lio.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/lio.h                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/lread.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/open.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/pwd.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/rdfmt.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/rewind.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/rsfe.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/sfe.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/sue.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/uio.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/util.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/wrtfmt.c                         |     3 +-
 external/bsd/pcc/dist/pcc-libs/libI77/wsfe.c                           |     3 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/Makefile.in                      |     3 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/_alloca.c                        |     3 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/_ftol.asm                        |     3 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/_ftol.c                          |     3 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/adddi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/anddi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/ashldi3.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/ashrdi3.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/cmpdi2.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/divdi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/fixdfdi.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/fixsfdi.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/fixunsdfdi.c                     |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/fixunssfdi.c                     |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/floatdidf.c                      |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/floatdisf.c                      |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/floatunsdidf.c                   |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/include/libpcc_stdarg.h          |     1 +
 external/bsd/pcc/dist/pcc-libs/libpcc/include/libpcc_stddef.h          |    10 -
 external/bsd/pcc/dist/pcc-libs/libpcc/iordi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/lshldi3.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/lshrdi3.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/moddi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/muldi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/negdi2.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/notdi2.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/qdivrem.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/quad.h                           |     2 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/ssp.c                            |     3 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/subdi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/ucmpdi2.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/udivdi3.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/umoddi3.c                        |     5 +-
 external/bsd/pcc/dist/pcc-libs/libpcc/xordi3.c                         |     5 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/Makefile.in                |     3 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/README.NetBSD              |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/README.txt                 |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/amd64/ieeefp.h        |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/amd64/milieu.h        |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/amd64/softfloat.h     |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/amd64/x86_64-gcc.h    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/arm/arm-gcc.h         |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/arm/milieu.h          |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/arm/softfloat.h       |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/i386/i386-gcc.h       |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/i386/ieeefp.h         |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/i386/milieu.h         |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/i386/softfloat.h      |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/m68k/m68k-gcc.h       |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/m68k/milieu.h         |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/m68k/softfloat.h      |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/powerpc/milieu.h      |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/powerpc/powerpc-gcc.h |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/powerpc/softfloat.h   |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/sh3/milieu.h          |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/sh3/sh3-gcc.h         |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/sh3/softfloat.h       |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/sparc64/milieu.h      |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/sparc64/softfloat.h   |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/arch/sparc64/sparc64-gcc.h |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/bits32/softfloat.c         |     4 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/bits64/softfloat-macros    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/bits64/softfloat.c         |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/eqdf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/eqsf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/fpgetmask.c                |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/fpgetround.c               |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/fpgetsticky.c              |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/fpsetmask.c                |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/fpsetround.c               |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/fpsetsticky.c              |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/gedf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/gesf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/gexf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/gtdf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/gtsf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/gtxf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/ledf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/lesf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/ltdf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/ltsf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/nedf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/negdf2.c                   |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/negsf2.c                   |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/negxf2.c                   |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/nesf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/nexf2.c                    |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/softfloat-for-gcc.h        |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/softfloat-history.txt      |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/softfloat-source.txt       |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/softfloat-specialize       |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/softfloat.txt              |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/timesoftfloat.c            |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/timesoftfloat.txt          |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/unorddf2.c                 |     2 +-
 external/bsd/pcc/dist/pcc-libs/libsoftfloat/unordsf2.c                 |     2 +-
 external/bsd/pcc/dist/pcc/Makefile.in                                  |     3 +-
 external/bsd/pcc/dist/pcc/arch/amd64/code.c                            |   196 +-
 external/bsd/pcc/dist/pcc/arch/amd64/local.c                           |   169 +-
 external/bsd/pcc/dist/pcc/arch/amd64/local2.c                          |    30 +-
 external/bsd/pcc/dist/pcc/arch/amd64/macdefs.h                         |    17 +-
 external/bsd/pcc/dist/pcc/arch/amd64/order.c                           |   140 +-
 external/bsd/pcc/dist/pcc/arch/amd64/table.c                           |    25 +-
 external/bsd/pcc/dist/pcc/arch/arm/code.c                              |     3 +-
 external/bsd/pcc/dist/pcc/arch/arm/local.c                             |     4 +-
 external/bsd/pcc/dist/pcc/arch/arm/local2.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/arm/macdefs.h                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/arm/order.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/arm/table.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/hppa/local.c                            |    74 +-
 external/bsd/pcc/dist/pcc/arch/hppa/local2.c                           |     6 +-
 external/bsd/pcc/dist/pcc/arch/hppa/macdefs.h                          |     2 -
 external/bsd/pcc/dist/pcc/arch/i386/code.c                             |    50 +-
 external/bsd/pcc/dist/pcc/arch/i386/flocal.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/i386/local.c                            |   112 +-
 external/bsd/pcc/dist/pcc/arch/i386/local2.c                           |    65 +-
 external/bsd/pcc/dist/pcc/arch/i386/macdefs.h                          |    18 +-
 external/bsd/pcc/dist/pcc/arch/i386/order.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/i386/table.c                            |    40 +-
 external/bsd/pcc/dist/pcc/arch/m16c/code.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/m16c/local.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/m16c/local2.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/m16c/macdefs.h                          |     3 +-
 external/bsd/pcc/dist/pcc/arch/m16c/order.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/mips/code.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/mips/local.c                            |     4 +-
 external/bsd/pcc/dist/pcc/arch/mips/local2.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/mips/macdefs.h                          |     3 +-
 external/bsd/pcc/dist/pcc/arch/mips/order.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/mips/table.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/nova/code.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/nova/local.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/nova/local2.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/nova/macdefs.h                          |     3 +-
 external/bsd/pcc/dist/pcc/arch/nova/order.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/nova/table.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp10/code.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp10/local.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp10/local2.c                          |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp10/macdefs.h                         |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp10/order.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp10/table.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp11/code.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp11/local.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp11/local2.c                          |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp11/macdefs.h                         |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp11/order.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/pdp11/table.c                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/powerpc/code.c                          |     3 +-
 external/bsd/pcc/dist/pcc/arch/powerpc/local.c                         |     4 +-
 external/bsd/pcc/dist/pcc/arch/powerpc/local2.c                        |     3 +-
 external/bsd/pcc/dist/pcc/arch/powerpc/macdefs.h                       |    11 +-
 external/bsd/pcc/dist/pcc/arch/powerpc/order.c                         |     3 +-
 external/bsd/pcc/dist/pcc/arch/powerpc/table.c                         |     3 +-
 external/bsd/pcc/dist/pcc/arch/sparc64/code.c                          |     3 +
 external/bsd/pcc/dist/pcc/arch/sparc64/local.c                         |     2 +-
 external/bsd/pcc/dist/pcc/arch/sparc64/local2.c                        |     9 +-
 external/bsd/pcc/dist/pcc/arch/sparc64/order.c                         |     7 +-
 external/bsd/pcc/dist/pcc/arch/sparc64/table.c                         |    40 +-
 external/bsd/pcc/dist/pcc/arch/vax/code.c                              |     3 +-
 external/bsd/pcc/dist/pcc/arch/vax/local.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/vax/local2.c                            |     3 +-
 external/bsd/pcc/dist/pcc/arch/vax/macdefs.h                           |     3 +-
 external/bsd/pcc/dist/pcc/arch/vax/order.c                             |     3 +-
 external/bsd/pcc/dist/pcc/arch/vax/table.c                             |     3 +-
 external/bsd/pcc/dist/pcc/cc/cc/Makefile.in                            |     6 +-
 external/bsd/pcc/dist/pcc/cc/cc/cc.c                                   |    37 +-
 external/bsd/pcc/dist/pcc/cc/ccom/Makefile.in                          |     5 +-
 external/bsd/pcc/dist/pcc/cc/ccom/builtins.c                           |   453 +++
 external/bsd/pcc/dist/pcc/cc/ccom/cgram.y                              |   219 +-
 external/bsd/pcc/dist/pcc/cc/ccom/gcc_compat.c                         |   164 +-
 external/bsd/pcc/dist/pcc/cc/ccom/init.c                               |    61 +-
 external/bsd/pcc/dist/pcc/cc/ccom/inline.c                             |     5 +-
 external/bsd/pcc/dist/pcc/cc/ccom/main.c                               |     3 +-
 external/bsd/pcc/dist/pcc/cc/ccom/optim.c                              |    16 +-
 external/bsd/pcc/dist/pcc/cc/ccom/pass1.h                              |    37 +-
 external/bsd/pcc/dist/pcc/cc/ccom/scan.l                               |     7 +-
 external/bsd/pcc/dist/pcc/cc/ccom/softfloat.c                          |     3 +-
 external/bsd/pcc/dist/pcc/cc/ccom/stabs.c                              |     3 +-
 external/bsd/pcc/dist/pcc/cc/ccom/symtabs.c                            |     3 +-
 external/bsd/pcc/dist/pcc/cc/ccom/trees.c                              |    71 +-
 external/bsd/pcc/dist/pcc/cc/cpp/Makefile.in                           |     3 +-
 external/bsd/pcc/dist/pcc/cc/cpp/cpp.c                                 |   144 +-
 external/bsd/pcc/dist/pcc/cc/cpp/cpp.h                                 |    30 +-
 external/bsd/pcc/dist/pcc/cc/cpp/cpy.y                                 |     7 +-
 external/bsd/pcc/dist/pcc/cc/cpp/scanner.l                             |     3 +-
 external/bsd/pcc/dist/pcc/cc/cpp/token.c                               |    54 +-
 external/bsd/pcc/dist/pcc/configure                                    |     2 +-
 external/bsd/pcc/dist/pcc/configure.ac                                 |     2 +-
 external/bsd/pcc/dist/pcc/f77/f77/Makefile.in                          |     3 +-
 external/bsd/pcc/dist/pcc/f77/f77/f77.1                                |     3 +-
 external/bsd/pcc/dist/pcc/f77/f77/f77.c                                |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/Makefile.in                         |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/data.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/defines.h                           |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/defs.h                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/equiv.c                             |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/error.c                             |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/exec.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/expr.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/ftypes.h                            |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/init.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/intr.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/io.c                                |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/lex.c                               |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/main.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/misc.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/proc.c                              |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/put.c                               |     3 +-
 external/bsd/pcc/dist/pcc/f77/fcom/putscj.c                            |     3 +-
 external/bsd/pcc/dist/pcc/mip/common.c                                 |     5 +-
 external/bsd/pcc/dist/pcc/mip/compat.c                                 |    23 +-
 external/bsd/pcc/dist/pcc/mip/manifest.h                               |     3 +-
 external/bsd/pcc/dist/pcc/mip/match.c                                  |    26 +-
 external/bsd/pcc/dist/pcc/mip/mkext.c                                  |     9 +-
 external/bsd/pcc/dist/pcc/mip/node.h                                   |     3 +-
 external/bsd/pcc/dist/pcc/mip/optim2.c                                 |  1337 ++++++---
 external/bsd/pcc/dist/pcc/mip/pass2.h                                  |     8 +-
 external/bsd/pcc/dist/pcc/mip/reader.c                                 |    28 +-
 external/bsd/pcc/dist/pcc/mip/regs.c                                   |   191 +-
 external/bsd/pcc/dist/pcc/os/bsd/ccconfig.h                            |     3 +-
 external/bsd/pcc/dist/pcc/os/darwin/ccconfig.h                         |     3 +-
 external/bsd/pcc/dist/pcc/os/dragonfly/ccconfig.h                      |     3 +-
 external/bsd/pcc/dist/pcc/os/linux/ccconfig.h                          |    24 +-
 external/bsd/pcc/dist/pcc/os/midnightbsd/ccconfig.h                    |     3 +-
 external/bsd/pcc/dist/pcc/os/mirbsd/ccconfig.h                         |     3 +-
 external/bsd/pcc/dist/pcc/os/netbsd/ccconfig.h                         |     3 +-
 external/bsd/pcc/dist/pcc/os/nextstep/ccconfig.h                       |     3 +-
 external/bsd/pcc/dist/pcc/os/none/ccconfig.h                           |     3 +-
 external/bsd/pcc/dist/pcc/os/openbsd/ccconfig.h                        |     3 +-
 external/bsd/pcc/dist/pcc/os/openbsd/f77config.h                       |     3 +-
 external/bsd/pcc/dist/pcc/os/sunos/ccconfig.h                          |     3 +-
 393 files changed, 3569 insertions(+), 1506 deletions(-)

diffs (truncated from 10786 to 300 lines):

diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/Makefile.in
--- a/external/bsd/pcc/dist/pcc-libs/Makefile.in        Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/Makefile.in        Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-#      $Id: Makefile.in,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $
+#      Id: Makefile.in,v 1.3 2008/07/18 08:11:28 gmcgarry Exp  
+#      $NetBSD: Makefile.in,v 1.1.1.2 2010/06/03 18:58:00 plunky Exp $
 #
 # top-level Makefile
 #
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/Makefile.in
--- a/external/bsd/pcc/dist/pcc-libs/csu/Makefile.in    Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/Makefile.in    Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-#      $Id: Makefile.in,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $
+#      Id: Makefile.in,v 1.9 2009/09/20 00:50:58 gmcgarry Exp  
+#      $NetBSD: Makefile.in,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $
 #
 # top-level Makefile
 #
@@ -20,7 +21,7 @@
 MFLAGS += CC=$(CC) MACH=$(TARGMACH) PCCLIBDIR=$(PCCLIBDIR) VPATH=$(srcdir)/$(TARGOS) SRCDIR=$(srcdir)/$(TARGOS)/
 
 all clean install:
-       if test -e $(srcdir)/$(TARGOS)/Makefile ; then $(MAKE) -f $(srcdir)/$(TARGOS)/Makefile $(MFLAGS) $@ ; fi
+       if test -f $(srcdir)/$(TARGOS)/Makefile ; then $(MAKE) -f $(srcdir)/$(TARGOS)/Makefile $(MFLAGS) $@ ; fi
 
 distclean: clean
        /bin/rm -f Makefile
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/README
--- a/external/bsd/pcc/dist/pcc-libs/csu/README Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/README Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-$Id: README,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $
+Id: README,v 1.4 2009/08/14 02:17:08 gmcgarry Exp      
+$NetBSD: README,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $
 
 OS-dependent and target-dependent:
 
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/common.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/common.c        Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/common.c        Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: common.c,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $      */
+/*     Id: common.c,v 1.3 2008/07/02 00:18:18 gmcgarry Exp     */      
+/*     $NetBSD: common.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $    */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -117,4 +118,5 @@
 
 #endif
 
-IDENT("$Id: common.c,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $");
+IDENT("Id: common.c,v 1.3 2008/07/02 00:18:18 gmcgarry Exp "); 
+IDENT("$NetBSD: common.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/common.h
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/common.h        Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/common.h        Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: common.h,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $      */
+/*     Id: common.h,v 1.4 2009/02/14 11:40:28 gmcgarry Exp     */      
+/*     $NetBSD: common.h,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $    */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/crt0.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/crt0.c     Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/crt0.c     Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: crt0.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $        */
+/*     Id: crt0.c,v 1.4 2009/02/14 21:02:58 gmcgarry Exp       */      
+/*     $NetBSD: crt0.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $      */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -149,4 +150,5 @@
 
 #include "common.c"
 
-IDENT("$Id: crt0.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crt0.c,v 1.4 2009/02/14 21:02:58 gmcgarry Exp ");   
+IDENT("$NetBSD: crt0.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/dylib1.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/dylib1.c   Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/i386/dylib1.c   Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: dylib1.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $      */
+/*     Id: dylib1.c,v 1.1 2009/02/14 11:40:28 gmcgarry Exp     */      
+/*     $NetBSD: dylib1.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $    */
 /*-
  * Copyright (c) 2009 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -67,4 +68,5 @@
 
 asm("\t.subsections_via_symbols\n");
 
-IDENT("$Id: dylib1.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: dylib1.c,v 1.1 2009/02/14 11:40:28 gmcgarry Exp "); 
+IDENT("$NetBSD: dylib1.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/macho.h
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/macho.h Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/macho.h Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: macho.h,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $       */
+/*     Id: macho.h,v 1.1 2008/06/01 01:28:34 gmcgarry Exp      */      
+/*     $NetBSD: macho.h,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $     */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/crt0.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/crt0.c  Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/crt0.c  Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: crt0.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $        */
+/*     Id: crt0.c,v 1.5 2009/02/14 21:02:58 gmcgarry Exp       */      
+/*     $NetBSD: crt0.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $      */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -157,4 +158,5 @@
 
 #include "common.c"
 
-IDENT("$Id: crt0.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crt0.c,v 1.5 2009/02/14 21:02:58 gmcgarry Exp ");   
+IDENT("$NetBSD: crt0.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/dylib1.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/dylib1.c        Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/darwin/powerpc/dylib1.c        Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: dylib1.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $      */
+/*     Id: dylib1.c,v 1.1 2009/02/14 11:40:28 gmcgarry Exp     */      
+/*     $NetBSD: dylib1.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $    */
 /*-
  * Copyright (c) 2009 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -85,4 +86,5 @@
 
 asm("\t.subsections_via_symbols\n");
 
-IDENT("$Id: dylib1.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: dylib1.c,v 1.1 2009/02/14 11:40:28 gmcgarry Exp "); 
+IDENT("$NetBSD: dylib1.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crt0.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crt0.c     Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crt0.c     Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: crt0.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $        */
+/*     Id: crt0.c,v 1.1 2009/08/14 02:24:36 gmcgarry Exp       */      
+/*     $NetBSD: crt0.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $      */
 /*-
  * Copyright (c) 2009 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -50,4 +51,5 @@
 
 #include "common.c"
 
-IDENT("$Id: crt0.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crt0.c,v 1.1 2009/08/14 02:24:36 gmcgarry Exp ");   
+IDENT("$NetBSD: crt0.c,v 1.1.1.2 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crti.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crti.c     Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crti.c     Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/* $Id: crti.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $ */
+/* Id: crti.c,v 1.1 2009/08/14 02:24:36 gmcgarry Exp  */       
+/* $NetBSD: crti.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $ */
 /*-
  * Copyright (c) 2009 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -31,4 +32,5 @@
        "       subq $8,%rsp    \n"
        "       .previous       \n");
 
-IDENT("$Id: crti.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crti.c,v 1.1 2009/08/14 02:24:36 gmcgarry Exp ");   
+IDENT("$NetBSD: crti.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crtn.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crtn.c     Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/amd64/crtn.c     Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/* $Id: crtn.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $ */
+/* Id: crtn.c,v 1.1 2009/08/14 02:24:36 gmcgarry Exp  */       
+/* $NetBSD: crtn.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $ */
 /*-
  * Copyright (c) 2009 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -27,4 +28,5 @@
        "       ret                             \n"
        "       .previous                       \n");
 
-IDENT("$Id: crtn.c,v 1.1.1.1 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crtn.c,v 1.1 2009/08/14 02:24:36 gmcgarry Exp ");   
+IDENT("$NetBSD: crtn.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/common.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/common.c Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/common.c Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/* $Id: common.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $  */
+/* Id: common.c,v 1.4 2009/01/23 07:10:09 gmcgarry Exp         */      
+/* $NetBSD: common.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $        */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -21,4 +22,5 @@
 asm("  .text\n_eprol:");
 #endif
 
-IDENT("$Id: common.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: common.c,v 1.4 2009/01/23 07:10:09 gmcgarry Exp "); 
+IDENT("$NetBSD: common.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/common.h
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/common.h Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/common.h Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/* $Id: common.h,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $ */
+/* Id: common.h,v 1.5 2009/02/14 23:49:40 gmcgarry Exp  */     
+/* $NetBSD: common.h,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $ */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/crtbegin.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/crtbegin.c       Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/crtbegin.c       Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: crtbegin.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $    */
+/*     Id: crtbegin.c,v 1.6 2009/08/16 23:07:07 gmcgarry Exp   */      
+/*     $NetBSD: crtbegin.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $  */
 /*-
  * Copyright (c) 1998, 2001, 2002 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -120,4 +121,5 @@
 MD_CALL_STATIC_FUNCTION(.init, __do_global_ctors_aux)
 MD_CALL_STATIC_FUNCTION(.fini, __do_global_dtors_aux)
 
-IDENT("$Id: crtbegin.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crtbegin.c,v 1.6 2009/08/16 23:07:07 gmcgarry Exp ");       
+IDENT("$NetBSD: crtbegin.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/crtend.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/crtend.c Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/crtend.c Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*      $Id: crtend.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $     */
+/*      Id: crtend.c,v 1.3 2009/08/16 23:07:07 gmcgarry Exp    */      
+/*      $NetBSD: crtend.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $   */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -33,4 +34,5 @@
 #endif
 );
 
-IDENT("$Id: crtend.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crtend.c,v 1.3 2009/08/16 23:07:07 gmcgarry Exp "); 
+IDENT("$NetBSD: crtend.c,v 1.1.1.3 2010/06/03 18:58:04 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crt0.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crt0.c      Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crt0.c      Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/*     $Id: crt0.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $        */
+/*     Id: crt0.c,v 1.4 2009/02/14 23:49:40 gmcgarry Exp       */      
+/*     $NetBSD: crt0.c,v 1.1.1.3 2010/06/03 18:58:05 plunky Exp $      */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -54,4 +55,5 @@
 
 #include "common.c"
 
-IDENT("$Id: crt0.c,v 1.1.1.2 2009/09/04 00:27:35 gmcgarry Exp $");
+IDENT("Id: crt0.c,v 1.4 2009/02/14 23:49:40 gmcgarry Exp ");   
+IDENT("$NetBSD: crt0.c,v 1.1.1.3 2010/06/03 18:58:05 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crti.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crti.c      Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crti.c      Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/* $Id: crti.c,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $ */
+/* Id: crti.c,v 1.2 2008/07/02 00:19:20 gmcgarry Exp  */       
+/* $NetBSD: crti.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $ */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *
@@ -33,4 +34,5 @@
        "       mov %esp,%ebp   \n"
        "       .previous       \n");
 
-IDENT("$Id: crti.c,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $");
+IDENT("Id: crti.c,v 1.2 2008/07/02 00:19:20 gmcgarry Exp ");   
+IDENT("$NetBSD: crti.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $");
diff -r 532c98cd91bb -r 3645a87f3b64 external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crtn.c
--- a/external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crtn.c      Thu Jun 03 18:52:46 2010 +0000
+++ b/external/bsd/pcc/dist/pcc-libs/csu/linux/i386/crtn.c      Thu Jun 03 18:57:00 2010 +0000
@@ -1,4 +1,5 @@
-/* $Id: crtn.c,v 1.1.1.1 2008/08/24 05:34:46 gmcgarry Exp $ */
+/* Id: crtn.c,v 1.2 2008/07/02 00:19:20 gmcgarry Exp  */       
+/* $NetBSD: crtn.c,v 1.1.1.2 2010/06/03 18:58:05 plunky Exp $ */
 /*-
  * Copyright (c) 2008 Gregory McGarry <g.mcgarry%ieee.org@localhost>
  *



Home | Main Index | Thread Index | Old Index