compiler: Correct types when type conversion makes backend call.
[gcc.git] / gcc / go / gofrontend / expressions.cc
2013-11-08 Ian Lance Taylorcompiler: Correct types when type conversion makes...
2013-10-24 Ian Lance Taylorcompiler: Implement 3-index slicing.
2013-10-23 Ian Lance Taylorcompiler: use builtin runtime calls for integer to...
2013-10-14 Chris Manghaneruntime: Don't clobber saved context when catching...
2013-10-11 Chris Manghanecompiler: Use backend interface for function code expre...
2013-10-11 Ian Lance Taylorcompiler: Better error message of unsafe.Offsetof(metho...
2013-10-11 Ian Lance Taylorcompiler: accept integral float constants as string...
2013-10-11 Chris Manghanecompiler: Use backend interface for function declarations.
2013-10-10 Ian Lance Taylorcompiler: Fix test for constant argument too large...
2013-10-10 Ian Lance Taylorcompiler: Don't inherit logical operator operand type...
2013-10-10 Ian Lance Taylorcompiler: A type conversion of a constant is not always...
2013-10-09 Ian Lance Taylorcompiler, runtime: Fix complex division of NaN / 0.
2013-10-08 Ian Lance Taylorcompiler: Error for qualified ID as field name in struc...
2013-10-04 Chris Manghanecompiler: Use backend interface for temporary reference...
2013-10-02 Chris Manghanecompiler: Use backend interface for numeric expressions.
2013-09-30 Chris Manghanecompiler: Use backend interface for variable expressions.
2013-09-19 Ian Lance Taylorcompiler: Fix inconsistent check for structs using...
2013-09-04 Ian Lance Taylorcompiler: expand arguments with multiple results for...
2013-09-03 Ian Lance Taylorcompiler, runtime: Use runtime functions to pass closur...
2013-06-26 Ian Lance Taylorcompiler: reject integer division by zero constant.
2013-06-25 Ian Lance Taylorcompiler: Fix type determination issues.
2013-06-24 Ian Lance Taylorcompiler: Add support for method values.
2013-06-21 Ian Lance Taylorcompiler: Really only make descriptors when needed.
2013-06-21 Ian Lance Taylorcompiler: Only make function descriptors if needed.
2013-06-19 Ian Lance Taylorcompiler: reject incorrect unsafe.Offsetof expressions.
2013-06-18 Ian Lance Taylorcompiler, runtime: Use function descriptors.
2013-06-14 Ian Lance Taylorcompiler: fix computation of Offsetof.
2012-12-21 Ian Lance Taylorre PR bootstrap/54659 (Bootstrap with --disable-nls...
2012-12-14 Ian Lance Taylorcompiler: Better error message for invalid shift operat...
2012-12-05 Ian Lance Taylorcompiler: Make sure we produce an error for a call...
2012-12-05 Ian Lance Taylorcompiler: Check for negative or inverted arguments...
2012-12-04 Ian Lance Taylorcompiler: Give error for constant inverted slice range.
2012-12-04 Ian Lance Taylorcompiler: Reject invalid nil == nil comparisons.
2012-12-04 Ian Lance Taylorcompiler: Fix crash in go/defer of some builtin functions.
2012-12-03 Ian Lance Taylorcompiler: Fix field tracking for references in global...
2012-12-03 Ian Lance Taylorcompiler: Fix nil func panics, constant type conversions.
2012-11-30 Ian Lance Taylorcompiler: Fix fieldtrack info for unexported type.
2012-11-29 Ian Lance Taylorcompiler, runtime: Track fields with tag go:"track".
2012-11-18 Ian Lance Taylorcompiler: Adjust for vec changes.
2012-11-16 Ian Lance Taylorcompiler: don't remove floating point conversion of...
2012-11-01 Ian Lance Taylorcompiler, runtime: More steps toward separating int...
2012-09-22 Ian Lance Taylorcompiler: No error if shift operand inherits interface...
2012-09-22 Ian Lance Taylorcompiler: Fix determining types for builtin complex...
2012-09-22 Ian Lance Taylorcompiler: Fix unnamed struct type converted to interfac...
2012-09-21 Ian Lance Taylorcompiler: len(<-c) is not a constant.
2012-09-20 Ian Lance Taylorcompiler: Fix struct hash and equality with _ fields.
2012-09-11 Diego NovilloRemove unnecessary VEC function overloads.
2012-08-23 Ian Lance Taylorcompiler: Comparisons return untyped boolean value.
2012-08-23 Ian Lance Taylorcompiler: Remove old handling of unsafe.Pointer in...
2012-08-15 Ian Lance Taylorcompiler: Adjust for GCC always being built with C++.
2012-06-14 Ian Lance Taylorcompiler: Avoid unnecessary interface conversions.
2012-05-30 Ian Lance Taylorcompiler: Don't crash for invalid constant types for...
2012-05-25 Ian Lance Taylorcompiler: Don't create a closure if not needed.
2012-05-15 Ian Lance Taylorcompiler: Fix taking address of constant outside of...
2012-05-15 Ian Lance Taylorcompiler: Sort array constructors by index.
2012-05-15 Ian Lance Taylorcompiler: Don't try to take the address of a constant.
2012-05-07 Ian Lance Taylorcompiler: fix ICE in handling of rune constants.
2012-05-07 Ian Lance Taylorcompiler: reject NOT operator on integer types.
2012-04-28 Ian Lance Taylorcompiler: Fix some crashes on invalid code.
2012-04-28 Ian Lance Taylorcompiler: Use less memory for array/slice literals.
2012-04-24 Ian Lance Taylorcompiler: Error for invalid use of ... in call.
2012-04-23 Ian Lance Taylorcompiler: Correct handling of negative zero floating...
2012-04-20 Ian Lance Taylorcompiler, runtime: Add explicit checks for zero and...
2012-04-16 Ian Lance Taylorcompiler: fix infinite recursion in string constant...
2012-03-30 Ian Lance Taylorcompiler: Fix order of evaluation of struct composite...
2012-03-29 Ian Lance Taylorcompiler, libgo: unsafe.{Sizeof,Alignof,Offsetof} retur...
2012-03-28 Ian Lance Taylorcompiler: fix null-dereference on invalid len() arg.
2012-03-28 Ian Lance Taylorcompiler: avoid an ICE on bound interface methods used...
2012-03-28 Ian Lance Taylorcompiler: fix crashes.
2012-03-28 Ian Lance Taylorcompiler: Rewrite handling of untyped numeric constants.
2012-03-09 Ian Lance Taylorcompiler: Be more careful to follow GENERIC type rules.
2012-03-08 Ian Lance Taylorcompiler: Don't crash on array assignment.
2012-03-01 Ian Lance Taylorcompiler: Fix handling of indirection of circular types.
2012-03-01 Ian Lance Taylorcompiler: Avoid some compiler crashes on invalid code.
2012-03-01 Ian Lance Taylorcompiler: Fix unary ^ applied to typed signed integer...
2012-02-29 Ian Lance Taylorcompiler: Avoid various crashes on error conditions.
2012-02-17 Ian Lance Taylorcompiler: Add parameter names to export information.
2012-02-17 Ian Lance Taylorcompiler: Don't lower binary expressions with mismatche...
2012-02-16 Ian Lance Taylorcompiler: Lower constant string comparisons.
2012-02-16 Ian Lance Taylorcompiler: Fix crash: type T1 struct { F *[1]T2 } where...
2012-02-08 Ian Lance Taylormath: Compile with -mfancy-math-387 -funsafe-optimizati...
2012-02-08 Ian Lance Taylorcompiler, runtime: Check make int64 args for overflow.
2012-02-02 Ian Lance Taylorcompiler: Compare slice start and end with cap, not...
2012-02-02 Ian Lance Taylorcompiler: Fix parameter references in method expressions.
2012-02-01 Ian Lance Taylorcompiler: Fix type checking for append.
2012-01-24 Ian Lance Taylorcompiler: Do not allow slice of array literal.
2012-01-24 Ian Lance Taylorcompiler: Correct type of expressions involving charact...
2012-01-24 Ian Lance Taylorcompiler: Better handling of erroneous function signatures.
2012-01-24 Ian Lance Taylorcompiler: Better error message for invalid use of prede...
2012-01-23 Ian Lance Taylorcompiler: Give an error if a variable is defined but...
2012-01-21 Ian Lance Taylorcompiler: Change alias handling, change rune alias...
2012-01-20 Ian Lance Taylorcompiler: Handle recursive interfaces.
2012-01-12 Ian Lance Taylorlibgo: Update to weekly.2011-12-14.
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: 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 Taylorcompiler: Permit omitting &T in composite literal.
2011-12-13 Ian Lance Taylorcompiler: Fix multiple conversions to different named...
next