summaryrefslogtreecommitdiff
path: root/src/cmd/gc/const.c
Commit message (Expand)AuthorAgeFilesLines
* cmd/gc: disallow pointer constantsMatthew Dempsky2014-08-151-2/+6
* build: annotations and modifications for c2goRuss Cox2014-07-021-0/+1
* cmd/gc: fix conversion of runtime constantRuss Cox2014-05-271-0/+1
* cmd/gc: fix float32 const conversion and printing of big float constsRuss Cox2014-05-191-7/+8
* cmd/gc: fix segfault in isgoconst.Shenghou Ma2014-04-161-1/+1
* cmd/gc: reject builtin function calls in len(fixed array) constantsRuss Cox2014-04-031-1/+16
* cmd/gc: shorten more temporary lifetimesRuss Cox2014-04-011-10/+42
* cmd/gc: fix spurious 'use of untyped nil' errorJan Ziak2014-03-271-1/+4
* cmd/gc: remove mentions of "ideal" from error messages.Rob Pike2013-08-161-1/+1
* cmd/gc, cmd/ld: fix warnings on Plan 9David du Colombier2013-03-301-1/+0
* cmd/gc: implement revised rule for shifts in equality.R?my Oudompheng2013-03-201-3/+6
* cmd/gc: missing type inference for untyped complex() calls.R?my Oudompheng2013-03-161-0/+26
* cmd/gc: simplify and fix defaultlit.R?my Oudompheng2013-03-041-70/+79
* cmd/gc: update ideal bool rules to match latest specRuss Cox2013-02-031-3/+6
* cmd/gc: reject non-Go constantsRuss Cox2013-02-011-4/+130
* cmd/gc: silence redundant error prints for misuse of [...]intRuss Cox2013-02-011-1/+2
* cmd/gc: clearer error for defer/go of conversion or invalid function callRuss Cox2013-02-011-6/+23
* cmd/gc: fix uintptr(nil) issues.R?my Oudompheng2013-01-081-0/+10
* cmd/gc: fix defaultlit of shifts used in interface context.R?my Oudompheng2012-12-151-0/+5
* cmd/gc: Friendlier errors on oversized arrays.Daniel Morsing2012-10-211-9/+31
* cmd/gc: recognize small TPTR64 values as small integer constants.Nigel Tao2012-09-111-0/+1
* cmd/gc: add missing case for OCOM in defaultlit()Shenghou Ma2012-07-021-1/+2
* gc: new, less strict bool rulesRuss Cox2012-02-221-3/+18
* gc: return of ideal boolRuss Cox2012-02-211-3/+4
* gc: fix error for floating-point constant %Russ Cox2012-02-191-0/+8
* gc: drop ideal boolRuss Cox2012-02-181-4/+3
* gc: make constant arith errors a little more friendlyRuss Cox2012-02-111-1/+1
* gc: implement character constant type rulesRuss Cox2011-12-081-4/+66
* gc: keep pointer to original node in constant rewrites.R?my Oudompheng2011-12-071-2/+6
* gc: don't inherit orig from subnodes in constant expression nodes.R?my Oudompheng2011-11-281-1/+4
* gc: clean up printing.Luuk van Dijk2011-10-311-4/+4
* gc: make static initialization more staticRuss Cox2011-08-311-1/+2
* gc: shuffle #includesRuss Cox2011-08-251-0/+2
* gc: shift type bugRuss Cox2011-07-281-2/+18
* gc: implement new shift rulesRuss Cox2011-05-311-0/+4
* gc: avoid saying same error 3 timesRuss Cox2011-04-011-1/+0
* gc: unsafe.Pointer is not a pointerRuss Cox2011-03-071-0/+1
* gc: make string const comparison unsignedJeff R. Allen2011-02-161-3/+3
* gc: delete float, complexRuss Cox2011-01-191-6/+6
* gc: complex(0)Russ Cox2010-12-131-5/+3
* gc: another shift bugRuss Cox2010-12-131-1/+1
* gc: index bounds tests and fixesRuss Cox2010-08-031-0/+6
* gc: more crash avoidanceRuss Cox2010-07-261-0/+6
* gc: no more ...Russ Cox2010-06-141-1/+1
* gc: new typechecking rulesRuss Cox2010-06-081-4/+7
* 1. decommit complex(float) conversionKen Thompson2010-03-091-2/+2
* gc: simplify complex typecheckRuss Cox2010-03-081-0/+3
* gc: minor const simplificationsRuss Cox2010-02-211-32/+15
* fixed bug in mpconst float multiply by 0.Ken Thompson2010-02-191-2/+21
* complex constant multiply and divideKen Thompson2010-02-181-6/+78