aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
AgeCommit message (Expand)AuthorFilesLines
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
2011-02-22Don't crash on attempt to index array type expression.Ian Lance Taylor1-0/+5
2011-02-22Don't crash on erroneous type switch.Ian Lance Taylor1-4/+7
2011-02-22Permit comparing non-empty interfaces with empty interfaces.Ian Lance Taylor1-4/+30
2011-02-22Test shift count for overflow.Ian Lance Taylor1-1/+1
2011-02-19Don't crash on constant right shift.Ian Lance Taylor1-8/+17
2011-02-19Don't crash on out of range switch value.Ian Lance Taylor1-1/+6
2011-02-19Remove old mechanism for passing varargs argument to varargs function.Ian Lance Taylor2-86/+0
2011-02-19Avoid infinite loop inheriting interface methods.Ian Lance Taylor1-0/+23
2011-02-19Avoid dangling open function after erroneous method expression.Ian Lance Taylor1-1/+4
2011-02-19Fix struct with array of struct with field that points to first struct.Ian Lance Taylor3-9/+39
2011-02-15Don't crash on erroneous thunk call.Ian Lance Taylor1-7/+24
2011-02-15Don't crash on interface loop with forwarding types.Ian Lance Taylor1-2/+3
2011-02-15Don't crash on defer of type conversion.Ian Lance Taylor1-5/+3
2011-02-15Don't crash lowering self-referential variable initializer.Ian Lance Taylor1-1/+17