OpenBSD CVS

CVS log for src/usr.bin/pcc/ccom/Attic/pftn.c


[BACK] Up to [local] / src / usr.bin / pcc / ccom

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.15, Thu Apr 12 11:51:12 2012 UTC (12 years, 2 months ago) by pirofti
Branch: MAIN
CVS Tags: HEAD
Changes since 1.14: +1 -1 lines
FILE REMOVED

tedu(tm) pcc.

Message sent. Okay deraadt@.

Revision 1.14 / (download) - annotate - [select for diffs], Sun Aug 17 18:40:13 2008 UTC (15 years, 9 months ago) by ragge
Branch: MAIN
CVS Tags: OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.13: +288 -66 lines
Diff to previous 1.13 (colored)

Updates from master repo.  Can now compile both userland and kernel.
(with some patches...)

Revision 1.13 / (download) - annotate - [select for diffs], Fri Apr 11 20:45:52 2008 UTC (16 years, 2 months ago) by stefan
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.12: +278 -304 lines
Diff to previous 1.12 (colored)

Sync with master repo. Reminded by otto@

Revision 1.12 / (download) - annotate - [select for diffs], Sat Jan 12 17:26:16 2008 UTC (16 years, 5 months ago) by ragge
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.11: +63 -189 lines
Diff to previous 1.11 (colored)

Large update from master repo:
> Pragma not position dependent
> Accept declarations anywhere in the C code.
> Just typing "a;" is not allowed anymore when declaring variables.
> Change to new initializer handling.
> Use symtab entry, not name to identify inline functions.
> Remove "suse" symtab element and replace it with output name.
> Print out strings directly, do not store them until end.
> Make prtdcon() target dependent to allow for float constants in code.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Dec 25 14:00:45 2007 UTC (16 years, 5 months ago) by stefan
Branch: MAIN
Changes since 1.10: +3 -1 lines
Diff to previous 1.10 (colored)

Pull from master repo:
Set type to INT if it's still UNDEF upon return from typenode().
ok ragge@

Revision 1.10 / (download) - annotate - [select for diffs], Sat Dec 22 22:56:31 2007 UTC (16 years, 5 months ago) by stefan
Branch: MAIN
Changes since 1.9: +5 -4 lines
Diff to previous 1.9 (colored)

Sync with main repo.

Revision 1.9 / (download) - annotate - [select for diffs], Sun Dec 9 18:47:07 2007 UTC (16 years, 6 months ago) by ragge
Branch: MAIN
Changes since 1.8: +124 -145 lines
Diff to previous 1.8 (colored)

Updates from master repo:
- Rewrite typenode() so that const/volatile can be handled better.
- Give target code the opportunity to handle string symbols.

Revision 1.8 / (download) - annotate - [select for diffs], Sun Nov 18 17:39:55 2007 UTC (16 years, 6 months ago) by ragge
Branch: MAIN
Changes since 1.7: +126 -86 lines
Diff to previous 1.7 (colored)

(Large) update from master repo:
> Use structure assignment instead of calling memcpy directly in struct return.
> Rewrite enum handling.
> In C99 enums are treated like INTs so convert them early to int.
> Move the enum tag handling out of defid(), tags are in their own namespace.
> This will be done with struct/union tags also.
> Comment out enum types.
> Remove ENUMTY/MOETY from target code.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Nov 16 09:00:12 2007 UTC (16 years, 6 months ago) by otto
Branch: MAIN
Changes since 1.6: +2 -20 lines
Diff to previous 1.6 (colored)

sync tree with master repo; Nov 16 2007

Revision 1.6 / (download) - annotate - [select for diffs], Wed Oct 31 19:41:36 2007 UTC (16 years, 7 months ago) by otto
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored)

Pull from master repo, commit by gmcgarry:
Reset the sue to UCHAR if using CHAR_UNSIGNED.  Fixes warnings on
powerpc.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Oct 20 09:58:00 2007 UTC (16 years, 7 months ago) by otto
Branch: MAIN
Changes since 1.4: +12 -6 lines
Diff to previous 1.4 (colored)

Pull from master repo; commit by gmcgarry
>Fix -Xp (prototype debug) which was interpretting structs/unions/enums
>as arrays.  Fix compile with TARGET_STDARGS.

Revision 1.4 / (download) - annotate - [select for diffs], Thu Oct 18 17:02:11 2007 UTC (16 years, 7 months ago) by otto
Branch: MAIN
Changes since 1.3: +6 -1 lines
Diff to previous 1.3 (colored)

Kill spurious warnings when arg is a function pointer. Should
actually check the return type and arg list of the function pointer
arg. ok ragge@

Revision 1.3 / (download) - annotate - [select for diffs], Fri Oct 12 17:03:14 2007 UTC (16 years, 8 months ago) by otto
Branch: MAIN
Changes since 1.2: +6 -6 lines
Diff to previous 1.2 (colored)

fix va_arg in conditional expressions; from ragge@

Revision 1.2 / (download) - annotate - [select for diffs], Sun Oct 7 18:34:41 2007 UTC (16 years, 8 months ago) by otto
Branch: MAIN
Changes since 1.1: +20 -5 lines
Diff to previous 1.1 (colored)

Merge from ragge's repo:
Add initial support for packed/aligned/rename pragmas.
Still missing:  Support for architectures with strict alignment.
TODO: Cleanup the rename stuff so that it's not depending on gcc
compat.

Revision 1.1 / (download) - annotate - [select for diffs], Sun Oct 7 17:58:51 2007 UTC (16 years, 8 months ago) by otto
Branch: MAIN

reorg pcc tree; requested by and ok deraadt@; ok ragge@

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.