compiler: Adjust for GCC always being built with C++.
[gcc.git] / gcc / go / gofrontend / types.cc
2012-08-15 Ian Lance Taylorcompiler: Adjust for GCC always being built with C++.
2012-06-14 Ian Lance Taylorcompiler, reflect: Quote package path with tabs.
2012-06-12 Ian Lance Taylorcompiler, reflect: Handle package path like gc compiler.
2012-06-07 Ian Lance Taylorcompiler: Fix unsafe.Sizeof for named structs with...
2012-05-16 Ian Lance Taylorcompiler: Fix assembler names of types defined in funct...
2012-05-09 Ian Lance Taylorcompiler: Add -fgo-pkgpath option.
2012-04-28 Ian Lance Taylorcompiler: Fix some crashes on invalid code.
2012-03-28 Ian Lance Taylorcompiler: Rewrite handling of untyped numeric constants.
2012-03-07 Ian Lance Taylorcompiler: Don't crash if writing type functions too...
2012-03-07 Ian Lance Taylorcompiler: Fix struct inheriting interface with varargs...
2012-03-01 Ian Lance Taylorcompiler: Reliably give errors on misuse of multiple...
2012-02-29 Ian Lance Taylorcompiler: Fix handling of invalid types within invalid...
2012-02-18 Ian Lance Taylorcompiler: Permit an empty interface to be embedded...
2012-02-17 Ian Lance Taylorcompiler: Add parameter names to export information.
2012-02-17 Ian Lance Taylorcompiler: Fix backend representation for interface...
2012-02-16 Ian Lance Taylorcompiler: Don't crash on erroneous unnamed integer...
2012-02-16 Ian Lance Taylorcompiler: Fix crash: type T1 struct { F *[1]T2 } where...
2012-02-15 Ian Lance Taylorcompiler: Avoid crashes on erroneous input.
2012-02-04 Ian Lance Taylorcompiler, reflect: Fix hash codes of named types, fix...
2012-02-02 Ian Lance Taylorcompiler: Compare slice start and end with cap, not...
2012-02-02 Ian Lance Taylorcompiler: Permit importing a method to a type being...
2012-01-21 Ian Lance Taylorcompiler: The type descriptor of an undefined forward...
2012-01-21 Ian Lance Taylorcompiler: Check for calling value method with dereferen...
2012-01-21 Ian Lance Taylorcompiler: Change alias handling, change rune alias...
2012-01-20 Ian Lance Taylorcompiler: Handle recursive interfaces.
2012-01-11 Ian Lance Taylorcompiler: Permit type B byte; type S []B; var v = S...
2012-01-11 Ian Lance Taylorcompiler: Don't use memcmp for structs/arrays with...
2012-01-11 Ian Lance Taylorcompiler: Fix names for hash/equality functions for...
2012-01-11 Ian Lance Taylorcompiler: Use backend interface for type sizes and...
2012-01-06 Ian Lance Taylorcompiler, runtime: Implement struct and array comparisons.
2011-12-28 Ian Lance Taylorcompiler: Prohibit comparisons of funcs, maps, and...
2011-12-14 Ian Lance Taylorlibgo: Update to weekly.2011-12-06.
2011-12-13 Ian Lance Taylorcompiler: Permit converting between string and named...
2011-12-08 Ian Lance Taylorcompiler: Don't check for hidden fields on struct assig...
2011-12-02 Ian Lance Taylorlibgo: Update to weekly.2011-11-01.
2011-11-29 Sanjoy Dascompiler: Define and use backend-independent Location...
2011-10-24 Ian Lance TaylorRename is_open_array_type to is_slice_type.
2011-09-20 Ian Lance TaylorEmit compiler errors for unused values.
2011-09-19 Ian Lance TaylorFix handling of mutually recursive named types.
2011-09-14 Ian Lance TaylorFix handling of structs with embedded global types.
2011-09-13 Ian Lance TaylorFix inheriting hidden methods with arguments of hidden...
2011-09-13 Ian Lance TaylorFix inherited hidden methods that return hidden types.
2011-08-25 Ian Lance TaylorChange Bound_method_expression to refer to a constant...
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-05-20 Ian Lance TaylorUpdate to current version of Go library.
2011-05-13 Ian Lance TaylorFix bug with multiple results returning structs with...
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-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-19 Ian Lance TaylorUse backend interface for blocks.
2011-04-04 Ian Lance TaylorUse backend interface for return statements.
2011-03-28 Ian Lance TaylorPermit copying hidden fields when passing method receiver.
2011-03-28 Ian Lance TaylorDon't bother to check for duplicate interface/named...
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-16 Ian Lance TaylorUpdate to current version of Go library (revision 94d65...
2011-03-03 Ian Lance TaylorDon't crash if erroneous type was not converted.
2011-03-03 Ian Lance TaylorDon't crash calling make with NaN or Infinity.
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 TaylorRewrite conversion of named types to backend representa...
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 TaylorHandle an array of pointers to itself.
2011-02-23 Ian Lance TaylorDon't crash looking for methods of pointer to error...
2011-02-19 Ian Lance TaylorAvoid infinite loop inheriting interface methods.
2011-02-19 Ian Lance TaylorFix struct with array of struct with field that points...
2011-02-15 Ian Lance TaylorDon't crash on interface loop with forwarding types.
2011-02-10 Ian Lance TaylorDon't crash on make of slice of erroneous type.
2011-02-10 Ian Lance TaylorDon't crash checking for unexported self-referential...
2011-01-27 Ian Lance TaylorFix self-referential struct via function and array.
2011-01-21 Ian Lance TaylorRemove the types float and complex.
2011-01-19 Ian Lance TaylorRemember erroneous type when creating GENERIC for named...
2011-01-19 Ian Lance TaylorFix handling of anonymous field in struct with pointer...
2011-01-19 Ian Lance TaylorFix generating type descriptor for array with float...
2011-01-19 Ian Lance TaylorDon't crash using value of something with no value.
2011-01-19 Ian Lance TaylorFix struct with field of pointer to array of same struct.
2011-01-06 Ian Lance TaylorFix order in which recursive structs are converted...
2011-01-04 Ian Lance TaylorDon't crash when adding function calls that return...
2010-12-24 Ian Lance TaylorDon't crash on invalid use of multiple results.
2010-12-24 Ian Lance TaylorAvoid endless loop checking whether type is pointer.
2010-12-24 Ian Lance TaylorAvoid endless loop inheriting interfaces.
2010-12-23 Ian Lance TaylorAvoid infinite recursion checking whether field is...
2010-12-22 Ian Lance TaylorAvoid infinite recursion looking up method in invalid...
2010-12-22 Ian Lance TaylorDon't crash on array type with erroneous length expression.
2010-12-22 Ian Lance TaylorMore tweaking of recursive name types when converting...
2010-12-21 Ian Lance TaylorDon't permit assigning abstract string/bool to numeric...
2010-12-21 Ian Lance TaylorDon't finalize methods for a type more than once.
2010-12-21 Ian Lance TaylorDon't crash when declaring methods on unknown name.
next