OSDN Git Service

PR target/47935
[pf3gnuchains/gcc-fork.git] / gcc / go /
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...
2011-01-19 ianDon't crash on reference to field with erroneous type.
2011-01-19 ianGenerate an init function if any global variable needs...
2011-01-19 ianImprove check for const initializer loop.
2011-01-19 ianCheck for error type when getting type of binary expres...
2011-01-19 ianFix handling of anonymous field in struct with pointer...
2011-01-19 ianAvoid crash with extra struct initializers with abstrac...
2011-01-19 ianFix generating type descriptor for array with float...
2011-01-19 ianDon't crash using value of something with no value.
2011-01-19 ianFix struct with field of pointer to array of same struct.
2011-01-14 ianThe type of a string slice is the type of the string...
2011-01-14 ianMove clearing of flag_strict_aliasing to gcc interface.
2011-01-06 ianFix order in which recursive structs are converted...
2011-01-05 ian PR go/47158
2011-01-04 ianCheck for identical package name and prefix in imported...
2011-01-04 ianDon't crash if append arguments are erroneous.
2011-01-04 ianDon't crash when adding function calls that return...
2011-01-04 ianDon't look outside of function literal for break or...
2011-01-04 ianDon't create erroneous COND_EXPR.
2011-01-04 ianDon't crash if tuple init redefines non-variable.
2011-01-04 ianDon't crash if named constant has no type when converti...
2011-01-04 ianDon't crash initializing multiple vars from a single...
2011-01-04 ianCheck for multiple default cases in switch or select.
2011-01-04 ianFix handling of abstract types in temporary statements.
2011-01-04 ianTraverse expressions when looking for types.
2011-01-04 ianDon't crash if package import fails.
2011-01-04 ianFix building recover thunks which return multiple values.
2011-01-04 ianAvoid crash when selecting on non-channel.
2010-12-31 amylaar PR go/47113
2010-12-24 ianAvoid endless loop on array with recursive length.
2010-12-24 ianDon't crash on invalid use of multiple results.
2010-12-24 ianAvoid endless loop checking whether type is pointer.
2010-12-24 ianAvoid endless loop inheriting interfaces.
2010-12-23 ianA variable with a preinit block requires an intializati...
2010-12-23 ianDon't crash building map descriptor for erroneous map.
2010-12-23 ianInitialize Lex::lineoff_ field.
2010-12-23 ianFix append with no extra arguments.
2010-12-23 ianDon't crash asking for type of invalid const.
2010-12-23 ianAvoid infinite recursion checking whether field is...
2010-12-23 ianAvoid crash when an unknown object is declared as a...
2010-12-22 ianDon't crash on invalid call to append.
2010-12-22 ianAvoid infinite recursion looking up method in invalid...
2010-12-22 ianDon't crash on index into erroneous map.
2010-12-22 ianCorrectly handle tuple assignment to _ at global scope.
2010-12-22 ianDon't crash on array type with erroneous length expression.
2010-12-22 ianDon't crash on variable initialization from erroneous...
next