pt.c (build_non_dependent_expr): Don't check null_ptr_cst_p, do call maybe_constant_v...
[gcc.git] / gcc / go /
2011-05-11 Ian Lance TaylorPermit new of a function type.
2011-05-11 Ian Lance TaylorDon't crash ranging over call to builtin function.
2011-05-07 Eric Botcazoulanghooks.h (lang_hooks_for_types): Change global_bindi...
2011-05-07 Ian Lance TaylorUse backend types for all type conversions.
2011-05-06 Ian Lance TaylorMore uses of backend interface for types.
2011-05-06 Ian Lance TaylorUse backend interface for string types.
2011-05-06 Ian Lance TaylorUse backend interface for interface types.
2011-05-06 Nathan Froydgeneralize build_case_label to the rest of the compiler
2011-05-05 Ian Lance TaylorUse backend interface for slice types.
2011-05-04 Ian Lance TaylorUse backend interface for named types and array types.
2011-04-27 Ian Lance TaylorUse backend interface for struct types.
2011-04-25 Ian Lance TaylorUse backend interface for function types.
2011-04-25 Evan ShawUse backend interface for basic types
2011-04-23 Ian Lance TaylorDefine go_unreachable to replace gcc_unreachable.
2011-04-21 Ian Lance TaylorDefine go_assert to replace gcc_assert
2011-04-21 Ian Lance TaylorUse mpfr_prec_round, not real_convert, to constraint...
2011-04-19 Ian Lance Taylorstatement.cc no longer includes gcc headers.
2011-04-19 Ian Lance TaylorChange general statement method to always use backend...
2011-04-19 Ian Lance TaylorUse backend interface for temporary variables.
2011-04-19 Ian Lance TaylorUse backend interface for blocks.
2011-04-19 Ian Lance TaylorUse backend interface for variables.
2011-04-15 Ian Lance TaylorAdd compound_list to backend interface.
2011-04-15 Ian Lance TaylorUse backend interface for send statement.
2011-04-15 Ian Lance TaylorUse the backend interface for select statements.
2011-04-13 Ian Lance TaylorUse backend interface for go and defer statements.
2011-04-13 Ian Lance TaylorUnify handling of runtime support functions.
2011-04-13 Nathan Froydada-tree.h (union lang_tree_node): Check for TS_COMMON...
2011-04-12 Ian Lance TaylorCall cgraph_get_node rather than cgraph_node.
2011-04-06 Ian Lance TaylorUse backend interface for constant switch statements.
2011-04-06 Ian Lance TaylorUse backend interface for if statements.
2011-04-06 Ian Lance TaylorUse backend interface for expression statements.
2011-04-05 Ian Lance TaylorUse backend interface for labels and goto statements.
2011-04-04 Ian Lance TaylorUse backend interface for return statements.
2011-04-03 Ian Lance TaylorStart using backend interface separate from gofrontend.
2011-03-31 Ian Lance TaylorTaking a slice of an array requires moving the array...
2011-03-29 Ian Lance TaylorFix select setting a map expression.
2011-03-28 Ian Lance TaylorPermit copying hidden fields when passing method receiver.
2011-03-28 Ian Lance TaylorBetter error message for invalid variable name in switc...
2011-03-28 Ian Lance TaylorBetter error message for missing condition in if statement.
2011-03-28 Ian Lance TaylorBetter error message for old syntax of send expression...
2011-03-28 Ian Lance TaylorBetter error messages for missing channel element type.
2011-03-28 Ian Lance TaylorDo not permit method expressions with pointers to inter...
2011-03-28 Ian Lance TaylorSupport method expressions for interface types.
2011-03-28 Ian Lance TaylorDon't bother to check for duplicate interface/named...
2011-03-28 Ian Lance TaylorFix useless assertion in ^ code.
2011-03-27 Ian Lance TaylorError for return with no values when result parameters...
2011-03-27 Ian Lance TaylorImprove error about indirecting an unsafe.Pointer type.
2011-03-26 Ian Lance TaylorDon't look up methods for pointer to interface.
2011-03-26 Ian Lance TaylorDon't permit embedded field to be pointer to interface.
2011-03-26 Ian Lance TaylorCheck for invalid uses of ... in builtin function calls.
2011-03-26 Ian Lance TaylorBetter error when setting const to nil.
2011-03-26 Ian Lance TaylorCorrectly parse select case <-c <- v.
2011-03-25 Ian Lance TaylorClean up handling of undefined types.
2011-03-25 Ian Lance TaylorAvoid overflow error after negative shift count error.
2011-03-25 Ian Lance TaylorGive an error if a label is defined but not used.
2011-03-25 Ian Lance TaylorRemove closed function. Fix tuple receive in select.
2011-03-24 Ian Lance TaylorTuple receives indicate whether channel is closed.
2011-03-24 Ian Lance TaylorCondition in if statement is not optional.
2011-03-24 Ian Lance TaylorChange c <- v from an expression to a statement.
2011-03-16 Ian Lance TaylorUpdate to current version of Go library (revision 94d65...
2011-03-07 Ian Lance TaylorSupport multiple init functions in a single file.
2011-03-07 Ian Lance TaylorFix second import of package using _.
2011-03-07 Ian Lance TaylorHandle predeclared names used as fields in struct compo...
2011-03-03 Ian Lance TaylorDon't crash if erroneous type was not converted.
2011-03-03 Ian Lance TaylorDon't crash on large composite literal array index.
2011-03-03 Ian Lance TaylorDon't crash calling make with NaN or Infinity.
2011-03-03 Ian Lance TaylorMake sure variable type is determined when var initiali...
2011-03-03 Ian Lance TaylorDon't crash getting type descriptor of abstract types.
2011-03-03 Ian Lance TaylorDon't look for methods on named pointer types.
2011-03-03 Ian Lance TaylorDetermine call types even if first call result is not...
2011-03-03 Ian Lance TaylorDon't crash declaring a function named "_".
2011-03-03 Ian Lance TaylorDon't crash on erroneous void initializer in temporary...
2011-03-03 Ian Lance TaylorFix type of discarded send expression.
2011-03-03 Ian Lance TaylorDon't crash on erroneous named result.
2011-03-03 Ian Lance TaylorDon't crash if a constant has a declared but undefined...
2011-03-03 Ian Lance TaylorRewrite conversion of named types to backend representa...
2011-02-28 Ian Lance TaylorMove ChangeLog entry to correct ChangeLog file.
2011-02-24 Ian Lance TaylorDon't delete old arguments when lowering varargs.
2011-02-24 Ian Lance TaylorTraverse erroneous send/receive statements.
2011-02-24 Ian Lance TaylorDon't crash when using receive on erroneous channel.
2011-02-24 Ian Lance TaylorSet type of array length expressions.
2011-02-24 Ian Lance TaylorAvoid infinite loop in field_reference.
2011-02-24 Ian Lance TaylorDon't crash on type switch of untyped value.
2011-02-24 Ian Lance TaylorDon't crash on type switch of nil.
2011-02-24 Ian Lance TaylorHandle an array of pointers to itself.
2011-02-24 Ian Lance TaylorDon't crash if a map index is used outside of a function.
2011-02-24 Ian Lance TaylorDon't crash on bad receiver when building recover thunks.
2011-02-24 Ian Lance TaylorDon't crash if a result variable redefines a parameter.
2011-02-23 Ian Lance TaylorDon't crash looking for methods of pointer to error...
2011-02-23 Ian Lance TaylorDon't crash on Sizeof of bad type.
2011-02-23 Ian Lance TaylorDon't crash on erroneous type descriptor in interface...
2011-02-23 Ian Lance TaylorTraverse erroneous function redefinitions.
2011-02-23 Ian Lance TaylorFix missing type traversals.
2011-02-22 Ian Lance TaylorDon't permit string index expression to have abstract...
2011-02-22 Ian Lance TaylorDon't crash import unsafe if "unsafe" was already defined.
2011-02-22 Ian Lance TaylorDon't crash on attempt to index array type expression.
2011-02-22 Ian Lance TaylorDon't crash on erroneous type switch.
2011-02-22 Ian Lance TaylorPermit comparing non-empty interfaces with empty interf...
2011-02-22 Ian Lance TaylorTest shift count for overflow.
2011-02-19 Ian Lance TaylorDon't crash on constant right shift.
next