aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
AgeCommit message (Expand)AuthorFilesLines
2010-12-24Avoid endless loop on array with recursive length.Ian Lance Taylor1-6/+52
2010-12-24Don't crash on invalid use of multiple results.Ian Lance Taylor1-5/+14
2010-12-24Avoid endless loop checking whether type is pointer.Ian Lance Taylor2-3/+15
2010-12-24Avoid endless loop inheriting interfaces.Ian Lance Taylor1-2/+25
2010-12-23A variable with a preinit block requires an intialization function.Ian Lance Taylor1-1/+5
2010-12-23Don't crash building map descriptor for erroneous map.Ian Lance Taylor1-1/+6
2010-12-23Initialize Lex::lineoff_ field.Ian Lance Taylor1-2/+2
2010-12-23Fix append with no extra arguments.Ian Lance Taylor1-3/+9
2010-12-23Don't crash asking for type of invalid const.Ian Lance Taylor2-2/+14
2010-12-23Avoid infinite recursion checking whether field is exported.Ian Lance Taylor2-7/+35
2010-12-23Avoid crash when an unknown object is declared as a type.Ian Lance Taylor1-7/+13
2010-12-22Don't crash on invalid call to append.Ian Lance Taylor1-2/+5
2010-12-22Avoid infinite recursion looking up method in invalid recursive type.Ian Lance Taylor2-12/+37
2010-12-22Don't crash on index into erroneous map.Ian Lance Taylor3-6/+27
2010-12-22Correctly handle tuple assignment to _ at global scope.Ian Lance Taylor2-14/+46
2010-12-22Don't crash on array type with erroneous length expression.Ian Lance Taylor1-2/+6
2010-12-22Don't crash on variable initialization from erroneous receive.Ian Lance Taylor1-1/+1
2010-12-22Don't crash on erroneous channel send or receive.Ian Lance Taylor1-0/+6
2010-12-22Don't crash if a temporary is not defined due to errors.Ian Lance Taylor2-5/+14
2010-12-22More tweaking of recursive name types when converting to GENERIC.Ian Lance Taylor2-26/+37
2010-12-22Don't crash if array length is invalid const.Ian Lance Taylor1-2/+13
2010-12-22Fix handling of named results for functions which call recover.Ian Lance Taylor2-0/+30
2010-12-22Correct test for number of arguments to append.Ian Lance Taylor1-1/+1
2010-12-22Don't crash if a constant initializer refers to the constant.Ian Lance Taylor2-4/+5
2010-12-22Don't crash on invalid type conversion.Ian Lance Taylor1-0/+12
2010-12-22Fix uninitialized variable when looking up '_'.Ian Lance Taylor1-3/+3
2010-12-22Don't crash receiving multiple results from void function.Ian Lance Taylor1-0/+6
2010-12-22Fix handling of functions with named results that call recover.Ian Lance Taylor1-1/+1
2010-12-22Don't crash building erroneous variable initializer.Ian Lance Taylor1-3/+10
2010-12-22Check for errors when building map construction.Ian Lance Taylor1-2/+10
2010-12-21Don't warn about []int of string with NUL bytes.Ian Lance Taylor1-10/+11
2010-12-21Don't permit assigning abstract string/bool to numeric variable.Ian Lance Taylor1-4/+6
2010-12-21Don't crash on calling new with an erroneous type.Ian Lance Taylor1-0/+4
2010-12-21Don't crash when returning something from a function named '_'.Ian Lance Taylor1-1/+7
2010-12-21Don't crash indexing into erroneous array.Ian Lance Taylor1-1/+5
2010-12-21Don't crash when copying a function with no closure variable.Ian Lance Taylor1-1/+3
2010-12-21Make-lang.in (check-go): Remove.Ian Lance Taylor2-1/+11
2010-12-21Don't finalize methods for a type more than once.Ian Lance Taylor1-0/+5
2010-12-21Correct handling of methods which call recover.Ian Lance Taylor2-10/+4
2010-12-21Don't crash when declaring methods on unknown name.Ian Lance Taylor3-2/+20
2010-12-21Layout undefined type.Ian Lance Taylor1-0/+1
2010-12-21Correct lexing of exponents.Ian Lance Taylor2-3/+25
2010-12-21Report errors for temporary statements rather than crashing.Ian Lance Taylor1-1/+12
2010-12-21Don't crash when some object is redefined as a type.Ian Lance Taylor1-2/+2
2010-12-21Traverse function types.Ian Lance Taylor1-0/+8
2010-12-21Don't crash on invalid return statement.Ian Lance Taylor1-4/+8
2010-12-18Don't crash on recursive variables and typed consts.Ian Lance Taylor3-8/+117
2010-12-17Avoid always splitting the stack when calling append and copy.Ian Lance Taylor1-9/+42
2010-12-16Don't crash on recursive consts.Ian Lance Taylor2-4/+51
2010-12-16Rework handling of recursive function types.Ian Lance Taylor1-4/+10