summaryrefslogtreecommitdiff
path: root/gcc/go
Commit message (Expand)AuthorAgeFilesLines
* Don't crash on if statement with erroneous conditional.ian2011-02-111-1/+3
* Don't get confused using type of erronous binary expression.ian2011-02-111-0/+11
* Don't crash on invalid comparison of complex constants.ian2011-02-111-1/+1
* Don't crash on erroneous thunk.ian2011-02-101-2/+12
* Don't crash on redefined variable.ian2011-02-101-1/+7
* Don't crash when referring to method other than calling it.ian2011-02-101-1/+2
* Determine types in global variable preinit blocks.ian2011-02-101-0/+3
* Don't get confused when mixing different abstract types in binary expr.ian2011-02-101-0/+3
* Don't crash on field reference to erroneous struct.ian2011-02-101-2/+8
* Don't crash on make of slice of erroneous type.ian2011-02-101-1/+3
* Don't crash checking for unexported self-referential pointer field.ian2011-02-101-6/+14
* The "main" package is not special if -fgo-prefix is used.ian2011-02-093-8/+25
* PR go/47378ian2011-02-081-27/+5
* * go-lang.c (go_langhook_init_options_struct): Setian2011-02-082-3/+6
* gcc:ro2011-01-312-3/+8
* Fix self-referential struct via function and array.ian2011-01-271-2/+3
* Copy initializer to heap if it may contain pointers.ian2011-01-261-10/+17
* Remove the types float and complex.ian2011-01-2112-76/+61
* Remember erroneous type when creating GENERIC for named type.ian2011-01-191-2/+8
* Don't crash on reference to field with erroneous type.ian2011-01-191-0/+2
* Generate an init function if any global variable needs a preinit.ian2011-01-193-25/+42
* Improve check for const initializer loop.ian2011-01-191-7/+47
* Check for error type when getting type of binary expression.ian2011-01-191-1/+5
* Fix handling of anonymous field in struct with pointer type.ian2011-01-191-1/+3
* Avoid crash with extra struct initializers with abstract types.ian2011-01-191-0/+4
* Fix generating type descriptor for array with float length.ian2011-01-191-1/+1
* Don't crash using value of something with no value.ian2011-01-191-0/+9
* Fix struct with field of pointer to array of same struct.ian2011-01-191-3/+29
* The type of a string slice is the type of the string being sliced.ian2011-01-141-1/+1
* Move clearing of flag_strict_aliasing to gcc interface.ian2011-01-146-20/+46
* Fix order in which recursive structs are converted to GENERIC.ian2011-01-062-23/+95
* PR go/47158ian2011-01-054-9/+24
* Check for identical package name and prefix in imported package.ian2011-01-041-0/+6
* Don't crash if append arguments are erroneous.ian2011-01-041-3/+3
* Don't crash when adding function calls that return multiple results.ian2011-01-041-0/+5
* Don't look outside of function literal for break or continue label.ian2011-01-042-14/+32
* Don't create erroneous COND_EXPR.ian2011-01-041-8/+13
* Don't crash if tuple init redefines non-variable.ian2011-01-041-6/+24
* Don't crash if named constant has no type when converting to GENERIC.ian2011-01-041-1/+2
* Don't crash initializing multiple vars from a single result function.ian2011-01-041-3/+13
* Check for multiple default cases in switch or select.ian2011-01-042-9/+39
* Fix handling of abstract types in temporary statements.ian2011-01-041-4/+7
* Traverse expressions when looking for types.ian2011-01-042-7/+8
* Don't crash if package import fails.ian2011-01-041-2/+5
* Fix building recover thunks which return multiple values.ian2011-01-041-3/+10
* Avoid crash when selecting on non-channel.ian2011-01-041-0/+8
* PR go/47113amylaar2010-12-312-1/+7
* Avoid endless loop on array with recursive length.ian2010-12-241-6/+52
* Don't crash on invalid use of multiple results.ian2010-12-241-5/+14
* Avoid endless loop checking whether type is pointer.ian2010-12-242-3/+15