aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
AgeCommit message (Expand)AuthorFilesLines
2011-01-14The type of a string slice is the type of the string being sliced.Ian Lance Taylor1-1/+1
2011-01-14Move clearing of flag_strict_aliasing to gcc interface.Ian Lance Taylor6-20/+46
2011-01-06Fix order in which recursive structs are converted to GENERIC.Ian Lance Taylor2-23/+95
2011-01-05re PR go/47158 ([cppcheck][PATCH] found a memory leaks in gcc/gcc/go/gofronte...Ian Lance Taylor4-9/+24
2011-01-04Check for identical package name and prefix in imported package.Ian Lance Taylor1-0/+6
2011-01-04Don't crash if append arguments are erroneous.Ian Lance Taylor1-3/+3
2011-01-04Don't crash when adding function calls that return multiple results.Ian Lance Taylor1-0/+5
2011-01-04Don't look outside of function literal for break or continue label.Ian Lance Taylor2-14/+32
2011-01-04Don't create erroneous COND_EXPR.Ian Lance Taylor1-8/+13
2011-01-04Don't crash if tuple init redefines non-variable.Ian Lance Taylor1-6/+24
2011-01-04Don't crash if named constant has no type when converting to GENERIC.Ian Lance Taylor1-1/+2
2011-01-04Don't crash initializing multiple vars from a single result function.Ian Lance Taylor1-3/+13
2011-01-04Check for multiple default cases in switch or select.Ian Lance Taylor2-9/+39
2011-01-04Fix handling of abstract types in temporary statements.Ian Lance Taylor1-4/+7
2011-01-04Traverse expressions when looking for types.Ian Lance Taylor2-7/+8
2011-01-04Don't crash if package import fails.Ian Lance Taylor1-2/+5
2011-01-04Fix building recover thunks which return multiple values.Ian Lance Taylor1-3/+10
2011-01-04Avoid crash when selecting on non-channel.Ian Lance Taylor1-0/+8
2010-12-31re PR go/47113 (go_field_alignment: field set but not used)Joern Rennecke2-1/+7
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