aboutsummaryrefslogtreecommitdiff
path: root/gcc/go/gofrontend
AgeCommit message (Expand)AuthorFilesLines
2012-03-30compiler: Fix order of evaluation of struct composite literals.Ian Lance Taylor2-7/+47
2012-03-29compiler, libgo: unsafe.{Sizeof,Alignof,Offsetof} return uintptr.Ian Lance Taylor2-9/+13
2012-03-28compiler: fix null-dereference on invalid len() arg.Ian Lance Taylor1-2/+2
2012-03-28compiler: avoid an ICE on bound interface methods used as values.Ian Lance Taylor1-1/+2
2012-03-28compiler: fix method finalization of unnamed structs.Ian Lance Taylor1-1/+5
2012-03-28compiler: fix crashes.Ian Lance Taylor2-1/+3
2012-03-28compiler: Rewrite handling of untyped numeric constants.Ian Lance Taylor5-2054/+1667
2012-03-09compiler: Be more careful to follow GENERIC type rules.Ian Lance Taylor1-6/+9
2012-03-09compiler: Correct handling of sink receiver.Ian Lance Taylor1-3/+2
2012-03-08compiler: Don't initialize zero sized variables.Ian Lance Taylor1-1/+3
2012-03-08compiler: Don't crash on array assignment.Ian Lance Taylor1-2/+4
2012-03-07compiler: Don't crash if writing type functions too late due to error.Ian Lance Taylor2-0/+11
2012-03-07compiler: Fix struct inheriting interface with varargs method.Ian Lance Taylor1-2/+6
2012-03-02libgo: Update to weekly.2012-02-14 release.Ian Lance Taylor1-54/+0
2012-03-01compiler: Reliably give errors on misuse of multiple value call.Ian Lance Taylor1-13/+16
2012-03-01compiler: Fix varargs functions that call recover.Ian Lance Taylor2-1/+8
2012-03-01compiler: Fix handling of indirection of circular types.Ian Lance Taylor1-18/+22
2012-03-01compiler: Avoid some compiler crashes on invalid code.Ian Lance Taylor2-3/+4
2012-03-01compiler: Fix unary ^ applied to typed signed integer constant.Ian Lance Taylor1-3/+22
2012-02-29compiler: Avoid various crashes on error conditions.Ian Lance Taylor2-14/+34
2012-02-29compiler: Fix handling of invalid types within invalid types.Ian Lance Taylor2-20/+7
2012-02-18compiler: Permit an empty interface to be embedded multiple times.Ian Lance Taylor1-1/+1
2012-02-17compiler: Permit (_) on left hand side of =.Ian Lance Taylor1-1/+1
2012-02-17compiler: List imported packages in export information.Ian Lance Taylor6-4/+74
2012-02-17compiler: Add parameter names to export information.Ian Lance Taylor7-45/+94
2012-02-17compiler: Don't lower binary expressions with mismatched types.Ian Lance Taylor1-0/+3
2012-02-17compiler: Fix backend representation for interface methods.Ian Lance Taylor1-2/+29
2012-02-17compiler: Check for initialization loop in constant initializer.Ian Lance Taylor1-2/+9
2012-02-16compiler: Don't crash on erroneous unnamed integer type descriptor.Ian Lance Taylor1-3/+3
2012-02-16compiler: Lower constant string comparisons.Ian Lance Taylor1-4/+35
2012-02-16compiler: Fix crash: type T1 struct { F *[1]T2 } where T2 is a struct.Ian Lance Taylor4-81/+352
2012-02-15compiler: Avoid crashes on erroneous input.Ian Lance Taylor3-4/+15
2012-02-08math: Compile with -mfancy-math-387 -funsafe-optimizations on x86.Ian Lance Taylor1-1/+2
2012-02-08compiler, runtime: Check make int64 args for overflow.Ian Lance Taylor2-6/+33
2012-02-07compiler, libgo: Use //extern comments rather than __asm__.Ian Lance Taylor3-6/+59
2012-02-04compiler, reflect: Fix hash codes of named types, fix PtrTo hash.Ian Lance Taylor1-1/+6
2012-02-02compiler: Compare slice start and end with cap, not len.Ian Lance Taylor2-14/+27
2012-02-02compiler: Permit importing a method to a type being defined.Ian Lance Taylor5-13/+32
2012-02-02compiler: Fix parameter references in method expressions.Ian Lance Taylor1-6/+17
2012-02-01compiler: Fix type checking for append.Ian Lance Taylor1-6/+13
2012-02-01compiler: Don't crash on switch _ := v.(type).Ian Lance Taylor1-3/+10
2012-02-01compiler: Permit a general expression in case x := <-c.Ian Lance Taylor1-9/+17
2012-02-01compiler: Don't crash on type switch case nil with selector.Ian Lance Taylor2-2/+19
2012-01-27compiler: Use new __builtin_init_heap_trampoline.Ian Lance Taylor1-2/+2
2012-01-26compiler: Don't make type fns for private fields in other packages.Ian Lance Taylor1-5/+17
2012-01-25compiler: Always re-lower lowered expressions.Ian Lance Taylor1-0/+2
2012-01-24compiler: Error if type switch case can not implement switch value.Ian Lance Taylor2-7/+25
2012-01-24compiler: Do not allow slice of array literal.Ian Lance Taylor1-16/+1
2012-01-24compiler: Simple statement in type switch is in different block.Ian Lance Taylor1-2/+24
2012-01-24compiler: Correct type of expressions involving character constants.Ian Lance Taylor1-1/+29