OSDN Git Service

Don't crash if tuple init redefines non-variable.
[pf3gnuchains/gcc-fork.git] / gcc / go /
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...
2010-12-22 ianDon't crash on erroneous channel send or receive.
2010-12-22 ianDon't crash if a temporary is not defined due to errors.
2010-12-22 ianMore tweaking of recursive name types when converting...
2010-12-22 ianDon't crash if array length is invalid const.
2010-12-22 ianFix handling of named results for functions which call...
2010-12-22 ianCorrect test for number of arguments to append.
2010-12-22 ianDon't crash if a constant initializer refers to the...
2010-12-22 ianDon't crash on invalid type conversion.
2010-12-22 ianFix uninitialized variable when looking up '_'.
2010-12-22 ianDon't crash receiving multiple results from void function.
2010-12-22 ianFix handling of functions with named results that call...
2010-12-22 ianDon't crash building erroneous variable initializer.
2010-12-22 ianCheck for errors when building map construction.
2010-12-21 ianDon't warn about []int of string with NUL bytes.
2010-12-21 ianDon't permit assigning abstract string/bool to numeric...
2010-12-21 ianDon't crash on calling new with an erroneous type.
2010-12-21 ianDon't crash when returning something from a function...
2010-12-21 ianDon't crash indexing into erroneous array.
2010-12-21 ianDon't crash when copying a function with no closure...
2010-12-21 ian * Make-lang.in (check-go): Remove.
2010-12-21 ianDon't finalize methods for a type more than once.
2010-12-21 ianCorrect handling of methods which call recover.
2010-12-21 ianDon't crash when declaring methods on unknown name.
2010-12-21 ianLayout undefined type.
2010-12-21 ianCorrect lexing of exponents.
2010-12-21 ianReport errors for temporary statements rather than...
2010-12-21 ianDon't crash when some object is redefined as a type.
2010-12-21 ianTraverse function types.
2010-12-21 ianDon't crash on invalid return statement.
2010-12-18 ianDon't crash on recursive variables and typed consts.
2010-12-17 ianAvoid always splitting the stack when calling append...
2010-12-16 ianDon't crash on recursive consts.
2010-12-16 ianRework handling of recursive function types.
2010-12-16 ianDon't crash when copying a call with no arguments.
2010-12-16 ianDon't crash on invalid tuple assignment.
2010-12-16 ianCheck for errors from Gogo::call_builtin.
2010-12-16 ianDon't crash with go or defer of bad call.
2010-12-16 ianDon't crash on Sizeof of undefined type.
2010-12-15 ianDon't crash on Sizeof of undefined type.
2010-12-15 ianDon't crash on tuple initialization from erroneous...
2010-12-15 ianDon't crash on empty struct created due to recursive...
2010-12-15 ianTweak handling of invalid function signature for functi...
2010-12-15 ianCheck for pointer to error type when looking for method.
2010-12-15 ianPermit _ as a result variable name.
2010-12-15 ianFix test for invalid type in anonymous field.
2010-12-15 ianAdd statements to type switch even if there are no...
2010-12-15 ianCheck errors in binary comparisons and builtin calls.
2010-12-15 ianPush hash table identity check down to subtypes.
2010-12-15 ianUse a different identity function for Types in hash...
2010-12-15 ianCheck for errors when converting array index to GENERIC.
2010-12-15 ianDon't crash on undefined anonymous field.
2010-12-15 ianDon't store error types in the Type-to-GENERIC hash...
2010-12-15 ianDon't get confused by error types in traversal.
2010-12-15 ianDon't crash building initializer of invalid array.
2010-12-14 ianDon't crash on invalid slice composite literal.
2010-12-14 ianFix comparison of string and interface types.
2010-12-14 ianDon't try to build unary and binary expressions with...
2010-12-14 ianDon't crash on invalid closure.
2010-12-14 ianDon't crash on invalid parameters/results.
2010-12-14 ianCheck for duplicate methods.
2010-12-14 ianDon't crash on erroneous receiver or parameters.
2010-12-14 ianCorrect handling of undefined name as key in map compos...
2010-12-14 ianInsert semicolon at EOF if necessary.
2010-12-14 ianCorrect protection against recursive types.
2010-12-14 ianDon't incorrectly parse expression as type switch.
2010-12-13 ian * gospec.c (lang_specific_driver): Add a -o option...
2010-12-09 ianAvoid some crashes on erroneous programs.
2010-12-07 ianDon't crash on erroneous result variable.
2010-12-07 ian PR tree-optimization/46805
2010-12-07 ian PR other/46789
2010-12-06 ianLICENSE: separate, change PATENTS text.
2010-12-04 ian PR bootstrap/46776
2010-12-03 ianIt's a contributor license agreement, not a copyright LA.
next