]> git.ipfire.org Git - thirdparty/gcc.git/history - gcc/go/gofrontend/expressions.cc
gccgo: Added code to dump the AST tree.
[thirdparty/gcc.git] / gcc / go / gofrontend / expressions.cc
2011-08-03  Roberto Lublinermangccgo: Added code to dump the AST tree.
2011-08-01  Ian Lance TaylorUse temporary variables for calls with multiple results.
2011-06-14  Ian Lance TaylorChange builtin make to runtime call at lowering time.
2011-06-11  Ian Lance TaylorUse backend interface for map descriptors.
2011-06-11  Ian Lance TaylorUse backend interface for type descriptors.
2011-06-09  Ian Lance TaylorUse backend interface for zero initialization.
2011-06-08  Ian Lance TaylorCorrect type size comparison.
2011-05-12  Ian Lance TaylorFix bug with taking address of a variable when address...
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  Ian Lance TaylorUse backend types for all type conversions.
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 TaylorUse backend interface for temporary variables.
2011-04-19  Ian Lance TaylorUse backend interface for variables.
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 TaylorUnify handling of runtime support functions.
2011-04-06  Ian Lance TaylorUse backend interface for if 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-03-31  Ian Lance TaylorTaking a slice of an array requires moving the array...
2011-03-28  Ian Lance TaylorPermit copying hidden fields when passing method receiver.
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 TaylorFix useless assertion in ^ code.
2011-03-27  Ian Lance TaylorImprove error about indirecting an unsafe.Pointer type.
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-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 TaylorRemove closed function. Fix tuple receive in select.
2011-03-24  Ian Lance TaylorChange c <- v from an expression to a statement.
2011-03-07  Ian Lance TaylorHandle predeclared names used as fields in struct compo...
2011-03-03  Ian Lance TaylorDon't crash on large composite literal array index.
2011-03-03  Ian Lance TaylorMake sure variable type is determined when var initiali...
2011-03-03  Ian Lance TaylorDetermine call types even if first call result is not...
2011-03-03  Ian Lance TaylorFix type of discarded send expression.
2011-03-03  Ian Lance TaylorRewrite conversion of named types to backend representa...
2011-02-24  Ian Lance TaylorDon't delete old arguments when lowering varargs.
2011-02-24  Ian Lance TaylorDon't crash when using receive on erroneous channel.
2011-02-24  Ian Lance TaylorDon't crash if a map index is used outside of a function.
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 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 on attempt to index array type expression.
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.
2011-02-19  Ian Lance TaylorRemove old mechanism for passing varargs argument to...
2011-02-19  Ian Lance TaylorAvoid dangling open function after erroneous method...
2011-02-19  Ian Lance TaylorFix struct with array of struct with field that points...
2011-02-15  Ian Lance TaylorDon't let array indexes be untyped.
2011-02-11  Ian Lance TaylorDon't get confused using type of erronous binary expres...
2011-02-11  Ian Lance TaylorDon't crash on invalid comparison of complex constants.
2011-02-10  Ian Lance TaylorDon't crash when referring to method other than calling it.
2011-02-10  Ian Lance TaylorDon't get confused when mixing different abstract types...
2011-02-10  Ian Lance TaylorDon't crash on field reference to erroneous struct.
2011-01-26  Ian Lance TaylorCopy initializer to heap if it may contain pointers.
2011-01-21  Ian Lance TaylorRemove the types float and complex.
2011-01-19  Ian Lance TaylorDon't crash on reference to field with erroneous type.
2011-01-19  Ian Lance TaylorImprove check for const initializer loop.
2011-01-19  Ian Lance TaylorCheck for error type when getting type of binary expres...
2011-01-19  Ian Lance TaylorAvoid crash with extra struct initializers with abstrac...
2011-01-14  Ian Lance TaylorThe type of a string slice is the type of the string...
2011-01-05  Ian Lance Taylorre PR go/47158 ([cppcheck][PATCH] found a memory leaks...
2011-01-04  Ian Lance TaylorDon't crash if append arguments are erroneous.
2011-01-04  Ian Lance TaylorDon't crash if named constant has no type when converti...
2011-01-04  Ian Lance TaylorDon't crash initializing multiple vars from a single...
2010-12-24  Ian Lance TaylorAvoid endless loop on array with recursive length.
2010-12-23  Ian Lance TaylorFix append with no extra arguments.
2010-12-23  Ian Lance TaylorDon't crash asking for type of invalid const.
2010-12-23  Ian Lance TaylorAvoid crash when an unknown object is declared as a...
2010-12-22  Ian Lance TaylorDon't crash on invalid call to append.
2010-12-22  Ian Lance TaylorDon't crash on index into erroneous map.
2010-12-22  Ian Lance TaylorDon't crash if array length is invalid const.
2010-12-22  Ian Lance TaylorCorrect test for number of arguments to append.
2010-12-22  Ian Lance TaylorDon't crash if a constant initializer refers to the...
2010-12-22  Ian Lance TaylorDon't crash on invalid type conversion.
2010-12-22  Ian Lance TaylorDon't crash receiving multiple results from void function.
2010-12-22  Ian Lance TaylorCheck for errors when building map construction.
2010-12-21  Ian Lance TaylorDon't crash on calling new with an erroneous type.
2010-12-21  Ian Lance TaylorDon't crash indexing into erroneous array.
2010-12-21  Ian Lance TaylorCorrect handling of methods which call recover.
2010-12-18  Ian Lance TaylorDon't crash on recursive variables and typed consts.
2010-12-17  Ian Lance TaylorAvoid always splitting the stack when calling append...
2010-12-16  Ian Lance TaylorDon't crash on recursive consts.
2010-12-16  Ian Lance TaylorDon't crash on invalid tuple assignment.
2010-12-16  Ian Lance TaylorCheck for errors from Gogo::call_builtin.
2010-12-16  Ian Lance TaylorDon't crash on Sizeof of undefined type.
2010-12-15  Ian Lance TaylorDon't crash on Sizeof of undefined type.
2010-12-15  Ian Lance TaylorDon't crash on empty struct created due to recursive...
2010-12-15  Ian Lance TaylorCheck errors in binary comparisons and builtin calls.
2010-12-15  Ian Lance TaylorPush hash table identity check down to subtypes.
2010-12-15  Ian Lance TaylorCheck for errors when converting array index to GENERIC.
2010-12-14  Ian Lance TaylorDon't crash on invalid slice composite literal.
2010-12-14  Ian Lance TaylorFix comparison of string and interface types.
2010-12-14  Ian Lance TaylorDon't try to build unary and binary expressions with...
next