aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
AgeCommit message (Expand)AuthorFilesLines
2011-04-03Start using backend interface separate from gofrontend.Ian Lance Taylor8-12/+361
2011-03-31Taking a slice of an array requires moving the array to the heap.Ian Lance Taylor1-4/+7
2011-03-29Fix select setting a map expression.Ian Lance Taylor1-24/+26
2011-03-28Permit copying hidden fields when passing method receiver.Ian Lance Taylor3-7/+45
2011-03-28Better error message for invalid variable name in switch statement.Ian Lance Taylor1-0/+13
2011-03-28Better error message for missing condition in if statement.Ian Lance Taylor1-0/+6
2011-03-28Better error message for old syntax of send expression as value.Ian Lance Taylor2-19/+72
2011-03-28Better error messages for missing channel element type.Ian Lance Taylor1-0/+17
2011-03-28Do not permit method expressions with pointers to interface types.Ian Lance Taylor1-3/+5
2011-03-28Support method expressions for interface types.Ian Lance Taylor1-5/+26
2011-03-28Don't bother to check for duplicate interface/named methods.Ian Lance Taylor1-9/+1
2011-03-28Fix useless assertion in ^ code.Ian Lance Taylor1-1/+1
2011-03-27Error for return with no values when result parameters are not named.Ian Lance Taylor1-3/+13
2011-03-27Improve error about indirecting an unsafe.Pointer type.Ian Lance Taylor1-0/+8
2011-03-26Don't look up methods for pointer to interface.Ian Lance Taylor1-5/+4
2011-03-26Don't permit embedded field to be pointer to interface.Ian Lance Taylor2-1/+12
2011-03-26Check for invalid uses of ... in builtin function calls.Ian Lance Taylor2-0/+12
2011-03-26Better error when setting const to nil.Ian Lance Taylor1-1/+3
2011-03-26Correctly parse select case <-c <- v.Ian Lance Taylor1-4/+12
2011-03-25Clean up handling of undefined types.Ian Lance Taylor5-91/+60
2011-03-25Avoid overflow error after negative shift count error.Ian Lance Taylor1-1/+7
2011-03-25Give an error if a label is defined but not used.Ian Lance Taylor4-28/+90
2011-03-25Remove closed function. Fix tuple receive in select.Ian Lance Taylor5-68/+67
2011-03-24Tuple receives indicate whether channel is closed.Ian Lance Taylor7-128/+279
2011-03-24Condition in if statement is not optional.Ian Lance Taylor2-28/+13
2011-03-24Change c <- v from an expression to a statement.Ian Lance Taylor7-204/+171
2011-03-16Update to current version of Go library (revision 94d654be2064).Ian Lance Taylor1-2/+14
2011-03-07Support multiple init functions in a single file.Ian Lance Taylor2-21/+19
2011-03-07Fix second import of package using _.Ian Lance Taylor1-6/+8
2011-03-07Handle predeclared names used as fields in struct composite literals.Ian Lance Taylor2-35/+25
2011-03-03Don't crash if erroneous type was not converted.Ian Lance Taylor1-1/+6
2011-03-03Don't crash on large composite literal array index.Ian Lance Taylor1-0/+26
2011-03-03Don't crash calling make with NaN or Infinity.Ian Lance Taylor1-1/+1
2011-03-03Make sure variable type is determined when var initialized to var.Ian Lance Taylor5-11/+25
2011-03-03Don't crash getting type descriptor of abstract types.Ian Lance Taylor1-4/+9
2011-03-03Don't look for methods on named pointer types.Ian Lance Taylor1-3/+1
2011-03-03Determine call types even if first call result is not used.Ian Lance Taylor2-6/+31
2011-03-03Don't crash declaring a function named "_".Ian Lance Taylor1-5/+8
2011-03-03Don't crash on erroneous void initializer in temporary statement.Ian Lance Taylor1-4/+6
2011-03-03Fix type of discarded send expression.Ian Lance Taylor1-1/+4
2011-03-03Don't crash on erroneous named result.Ian Lance Taylor1-2/+8
2011-03-03Don't crash if a constant has a declared but undefined type.Ian Lance Taylor1-1/+10
2011-03-03Rewrite conversion of named types to backend representation.Ian Lance Taylor7-311/+576
2011-02-28Move ChangeLog entry to correct ChangeLog file.Ian Lance Taylor1-0/+4
2011-02-24Don't delete old arguments when lowering varargs.Ian Lance Taylor1-2/+3
2011-02-24Traverse erroneous send/receive statements.Ian Lance Taylor1-0/+6
2011-02-24Don't crash when using receive on erroneous channel.Ian Lance Taylor1-1/+5
2011-02-24Set type of array length expressions.Ian Lance Taylor1-24/+16
2011-02-24Avoid infinite loop in field_reference.Ian Lance Taylor2-2/+40
2011-02-24Don't crash on type switch of untyped value.Ian Lance Taylor1-1/+5