Discussion:
CVS commit: pcc/cc/ccom
Anders Magnusson
2014-09-15 14:36:08 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Mon Sep 15 14:36:08 UTC 2014

Modified Files:
pcc/cc/ccom: pftn.c

Log Message:
Allow implicit cast of complex number to integral type in return.
Fixes Jira#PCC-489 by Fred J. Tydeman.


To generate a diff of this commit:
cvs rdiff -u -r1.387 -r1.388 pcc/cc/ccom/pftn.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-15 15:30:50 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Mon Sep 15 15:30:49 UTC 2014

Modified Files:
pcc/cc/ccom: cgram.y

Log Message:
Handle not of complex numbers. Fixes Jira#PCC-494 by Fred J. Tydeman.


To generate a diff of this commit:
cvs rdiff -u -r1.382 -r1.383 pcc/cc/ccom/cgram.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-15 19:46:51 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Mon Sep 15 19:46:51 UTC 2014

Modified Files:
pcc/cc/ccom: cgram.y pftn.c

Log Message:
Accept complex in ?: expressions. Fixes Jira#PCC-490 by Fred J. Tydeman.


To generate a diff of this commit:
cvs rdiff -u -r1.383 -r1.384 pcc/cc/ccom/cgram.y
cvs rdiff -u -r1.388 -r1.389 pcc/cc/ccom/pftn.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-18 14:44:06 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Thu Sep 18 14:44:06 UTC 2014

Modified Files:
pcc/cc/ccom: trees.c

Log Message:
Be sure to cast read bitfield back to initial type after int promotion.
Fixes Jira#PCC-498 by Iain Hibbert.


To generate a diff of this commit:
cvs rdiff -u -r1.339 -r1.340 pcc/cc/ccom/trees.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-18 18:24:06 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Thu Sep 18 18:24:06 UTC 2014

Modified Files:
pcc/cc/ccom: pftn.c

Log Message:
Re-fix PCC-221 (got lost with PCC-426).


To generate a diff of this commit:
cvs rdiff -u -r1.389 -r1.390 pcc/cc/ccom/pftn.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-22 12:15:29 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Mon Sep 22 12:15:29 UTC 2014

Modified Files:
pcc/cc/ccom: trees.c

Log Message:
Ensure that value of bool is either 0 or 1 after cast.
Fixes Jira#PCC-488 by Fred J. Tydeman.
CVS ----------------------------------------------------------------------


To generate a diff of this commit:
cvs rdiff -u -r1.341 -r1.342 pcc/cc/ccom/trees.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-22 14:16:12 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Mon Sep 22 14:16:12 UTC 2014

Modified Files:
pcc/cc/ccom: cgram.y

Log Message:
Fix bug in non-gcc-compat case that complained even if no error was there.
Fixes Jira#PCC-479 by rl.


To generate a diff of this commit:
cvs rdiff -u -r1.385 -r1.386 pcc/cc/ccom/cgram.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-23 14:24:00 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Tue Sep 23 14:24:00 UTC 2014

Modified Files:
pcc/cc/ccom: pftn.c

Log Message:
Do not special-case openbsd and ssp. We need libpcc for openbsd so use
our ssp implementation.


To generate a diff of this commit:
cvs rdiff -u -r1.391 -r1.392 pcc/cc/ccom/pftn.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-26 10:30:36 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Fri Sep 26 10:30:36 UTC 2014

Modified Files:
pcc/cc/ccom: builtins.c cgram.y

Log Message:
Add __builtin_choose_expr and __builtin_types_compatible_p, as reported
missing by Steve Kargl on pcc-list.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 pcc/cc/ccom/builtins.c
cvs rdiff -u -r1.386 -r1.387 pcc/cc/ccom/cgram.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-28 15:34:35 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Sun Sep 28 15:34:35 UTC 2014

Modified Files:
pcc/cc/ccom: builtins.c

Log Message:
If inline functions found that are never called, output their destination
labels anyway to make pass2 happy.
Fixes FreeBSD math bug reported on pcc-list by Steve Kargl.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 pcc/cc/ccom/builtins.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-09-29 17:03:40 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Mon Sep 29 17:03:40 UTC 2014

Modified Files:
pcc/cc/ccom: cgram.y

Log Message:
Must have permanent memory for computed goto in case of inlining.


To generate a diff of this commit:
cvs rdiff -u -r1.387 -r1.388 pcc/cc/ccom/cgram.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Anders Magnusson
2014-10-01 19:59:55 UTC
Permalink
Module Name: pcc
Committed By: ragge
Date: Wed Oct 1 19:59:55 UTC 2014

Modified Files:
pcc/cc/ccom: trees.c

Log Message:
Fix bug in big endian handling of bitfields.


To generate a diff of this commit:
cvs rdiff -u -r1.342 -r1.343 pcc/cc/ccom/trees.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Loading...