aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
AgeCommit message (Expand)AuthorFilesLines
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
2011-02-24Don't crash on type switch of nil.Ian Lance Taylor1-2/+5
2011-02-24Handle an array of pointers to itself.Ian Lance Taylor2-20/+54
2011-02-24Don't crash if a map index is used outside of a function.Ian Lance Taylor1-9/+37
2011-02-24Don't crash on bad receiver when building recover thunks.Ian Lance Taylor1-4/+8
2011-02-24Don't crash if a result variable redefines a parameter.Ian Lance Taylor1-1/+2
2011-02-23Don't crash looking for methods of pointer to error type.Ian Lance Taylor1-0/+2
2011-02-23Don't crash on Sizeof of bad type.Ian Lance Taylor1-1/+5
2011-02-23Don't crash on erroneous type descriptor in interface conversion.Ian Lance Taylor1-0/+2
2011-02-23Traverse erroneous function redefinitions.Ian Lance Taylor1-3/+8
2011-02-23Fix missing type traversals.Ian Lance Taylor2-0/+16
2011-02-22Don't permit string index expression to have abstract types.Ian Lance Taylor1-3/+2
2011-02-22Don't crash import unsafe if "unsafe" was already defined.Ian Lance Taylor1-0/+7