aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
AgeCommit message (Expand)AuthorFilesLines
2011-02-15Don't crash on erroneous thunk call.Ian Lance Taylor1-7/+24
2011-02-15Don't crash on interface loop with forwarding types.Ian Lance Taylor1-2/+3
2011-02-15Don't crash on defer of type conversion.Ian Lance Taylor1-5/+3
2011-02-15Don't crash lowering self-referential variable initializer.Ian Lance Taylor1-1/+17
2011-02-15Don't let array indexes be untyped.Ian Lance Taylor1-3/+2
2011-02-15Don't crash defining function in different package.Ian Lance Taylor1-2/+3
2011-02-14Fixes to gccgo.texi.Ralf Wildenhues1-2/+2
2011-02-11Don't crash on if statement with erroneous conditional.Ian Lance Taylor1-1/+3
2011-02-11Don't get confused using type of erronous binary expression.Ian Lance Taylor1-0/+11
2011-02-11Don't crash on invalid comparison of complex constants.Ian Lance Taylor1-1/+1
2011-02-10Don't crash on erroneous thunk.Ian Lance Taylor1-2/+12
2011-02-10Don't crash on redefined variable.Ian Lance Taylor1-1/+7
2011-02-10Don't crash when referring to method other than calling it.Ian Lance Taylor1-1/+2
2011-02-10Determine types in global variable preinit blocks.Ian Lance Taylor1-0/+3
2011-02-10Don't get confused when mixing different abstract types in binary expr.Ian Lance Taylor1-0/+3
2011-02-10Don't crash on field reference to erroneous struct.Ian Lance Taylor1-2/+8
2011-02-10Don't crash on make of slice of erroneous type.Ian Lance Taylor1-1/+3
2011-02-10Don't crash checking for unexported self-referential pointer field.Ian Lance Taylor1-6/+14
2011-02-09The "main" package is not special if -fgo-prefix is used.Ian Lance Taylor3-8/+25
2011-02-08re PR go/47378 (ld warning linking with libgo.so: relocation bound to a symbo...Ian Lance Taylor1-27/+5
2011-02-08go-lang.c (go_langhook_init_options_struct): Set frontend_set_flag_errno_math.Ian Lance Taylor2-3/+6
2011-01-31configure.ac (gcc_cv_ld_static_option): Define.Rainer Orth2-3/+8
2011-01-27Fix self-referential struct via function and array.Ian Lance Taylor1-2/+3
2011-01-26Copy initializer to heap if it may contain pointers.Ian Lance Taylor1-10/+17
2011-01-21Remove the types float and complex.Ian Lance Taylor12-76/+61
2011-01-19Remember erroneous type when creating GENERIC for named type.Ian Lance Taylor1-2/+8
2011-01-19Don't crash on reference to field with erroneous type.Ian Lance Taylor1-0/+2
2011-01-19Generate an init function if any global variable needs a preinit.Ian Lance Taylor3-25/+42
2011-01-19Improve check for const initializer loop.Ian Lance Taylor1-7/+47
2011-01-19Check for error type when getting type of binary expression.Ian Lance Taylor1-1/+5
2011-01-19Fix handling of anonymous field in struct with pointer type.Ian Lance Taylor1-1/+3
2011-01-19Avoid crash with extra struct initializers with abstract types.Ian Lance Taylor1-0/+4
2011-01-19Fix generating type descriptor for array with float length.Ian Lance Taylor1-1/+1
2011-01-19Don't crash using value of something with no value.Ian Lance Taylor1-0/+9
2011-01-19Fix struct with field of pointer to array of same struct.Ian Lance Taylor1-3/+29
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