OSDN Git Service

2011-03-06 Andrew Stubbs <ams@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / go /
2011-04-05 ianUse backend interface for labels and goto statements.
2011-04-04 ianUse backend interface for return statements.
2011-04-03 ianStart using backend interface separate from gofrontend.
2011-03-31 ianTaking a slice of an array requires moving the array...
2011-03-29 ianFix select setting a map expression.
2011-03-28 ianPermit copying hidden fields when passing method receiver.
2011-03-28 ianBetter error message for invalid variable name in switc...
2011-03-28 ianBetter error message for missing condition in if statement.
2011-03-28 ianBetter error message for old syntax of send expression...
2011-03-28 ianBetter error messages for missing channel element type.
2011-03-28 ianDo not permit method expressions with pointers to inter...
2011-03-28 ianSupport method expressions for interface types.
2011-03-28 ianDon't bother to check for duplicate interface/named...
2011-03-28 ianFix useless assertion in ^ code.
2011-03-27 ianError for return with no values when result parameters...
2011-03-27 ianImprove error about indirecting an unsafe.Pointer type.
2011-03-26 ianDon't look up methods for pointer to interface.
2011-03-26 ianDon't permit embedded field to be pointer to interface.
2011-03-26 ianCheck for invalid uses of ... in builtin function calls.
2011-03-26 ianBetter error when setting const to nil.
2011-03-26 ianCorrectly parse select case <-c <- v.
2011-03-25 ianClean up handling of undefined types.
2011-03-25 ianAvoid overflow error after negative shift count error.
2011-03-25 ianGive an error if a label is defined but not used.
2011-03-25 ianRemove closed function. Fix tuple receive in select.
2011-03-24 ianTuple receives indicate whether channel is closed.
2011-03-24 ianCondition in if statement is not optional.
2011-03-24 ianChange c <- v from an expression to a statement.
2011-03-16 ianUpdate to current version of Go library (revision 94d65...
2011-03-07 ianSupport multiple init functions in a single file.
2011-03-07 ianFix second import of package using _.
2011-03-07 ianHandle predeclared names used as fields in struct compo...
2011-03-03 ianDon't crash if erroneous type was not converted.
2011-03-03 ianDon't crash on large composite literal array index.
2011-03-03 ianDon't crash calling make with NaN or Infinity.
2011-03-03 ianMake sure variable type is determined when var initiali...
2011-03-03 ianDon't crash getting type descriptor of abstract types.
2011-03-03 ianDon't look for methods on named pointer types.
2011-03-03 ianDetermine call types even if first call result is not...
2011-03-03 ianDon't crash declaring a function named "_".
2011-03-03 ianDon't crash on erroneous void initializer in temporary...
2011-03-03 ianFix type of discarded send expression.
2011-03-03 ianDon't crash on erroneous named result.
2011-03-03 ianDon't crash if a constant has a declared but undefined...
2011-03-03 ianRewrite conversion of named types to backend representa...
2011-02-28 ianMove ChangeLog entry to correct ChangeLog file.
2011-02-24 ianDon't delete old arguments when lowering varargs.
2011-02-24 ianTraverse erroneous send/receive statements.
2011-02-24 ianDon't crash when using receive on erroneous channel.
2011-02-24 ianSet type of array length expressions.
2011-02-24 ianAvoid infinite loop in field_reference.
2011-02-24 ianDon't crash on type switch of untyped value.
2011-02-24 ianDon't crash on type switch of nil.
2011-02-24 ianHandle an array of pointers to itself.
2011-02-24 ianDon't crash if a map index is used outside of a function.
2011-02-24 ianDon't crash on bad receiver when building recover thunks.
2011-02-24 ianDon't crash if a result variable redefines a parameter.
2011-02-23 ianDon't crash looking for methods of pointer to error...
2011-02-23 ianDon't crash on Sizeof of bad type.
2011-02-23 ianDon't crash on erroneous type descriptor in interface...
2011-02-23 ianTraverse erroneous function redefinitions.
2011-02-23 ianFix missing type traversals.
2011-02-22 ianDon't permit string index expression to have abstract...
2011-02-22 ianDon't crash import unsafe if "unsafe" was already defined.
2011-02-22 ianDon't crash on attempt to index array type expression.
2011-02-22 ianDon't crash on erroneous type switch.
2011-02-22 ianPermit comparing non-empty interfaces with empty interf...
2011-02-22 ianTest shift count for overflow.
2011-02-19 ianDon't crash on constant right shift.
2011-02-19 ianDon't crash on out of range switch value.
2011-02-19 ianRemove old mechanism for passing varargs argument to...
2011-02-19 ianAvoid infinite loop inheriting interface methods.
2011-02-19 ianAvoid dangling open function after erroneous method...
2011-02-19 ianFix struct with array of struct with field that points...
2011-02-15 ianDon't crash on erroneous thunk call.
2011-02-15 ianDon't crash on interface loop with forwarding types.
2011-02-15 ianDon't crash on defer of type conversion.
2011-02-15 ianDon't crash lowering self-referential variable initializer.
2011-02-15 ianDon't let array indexes be untyped.
2011-02-15 ianDon't crash defining function in different package.
2011-02-14 rwildFixes to gccgo.texi.
2011-02-11 ianDon't crash on if statement with erroneous conditional.
2011-02-11 ianDon't get confused using type of erronous binary expres...
2011-02-11 ianDon't crash on invalid comparison of complex constants.
2011-02-10 ianDon't crash on erroneous thunk.
2011-02-10 ianDon't crash on redefined variable.
2011-02-10 ianDon't crash when referring to method other than calling it.
2011-02-10 ianDetermine types in global variable preinit blocks.
2011-02-10 ianDon't get confused when mixing different abstract types...
2011-02-10 ianDon't crash on field reference to erroneous struct.
2011-02-10 ianDon't crash on make of slice of erroneous type.
2011-02-10 ianDon't crash checking for unexported self-referential...
2011-02-09 ianThe "main" package is not special if -fgo-prefix is...
2011-02-08 ian PR go/47378
2011-02-08 ian * go-lang.c (go_langhook_init_options_struct): Set
2011-01-31 ro gcc:
2011-01-27 ianFix self-referential struct via function and array.
2011-01-26 ianCopy initializer to heap if it may contain pointers.
2011-01-21 ianRemove the types float and complex.
2011-01-19 ianRemember erroneous type when creating GENERIC for named...
next