summaryrefslogtreecommitdiff
path: root/gcc/go
Commit message (Expand)AuthorAgeFilesLines
* compiler: Don't call cgraph_mark_needed_node.ian2012-04-201-1/+0
* compiler, runtime: Add explicit checks for zero and overflow division.ian2012-04-205-29/+153
* gcc/steven2012-04-182-1/+6
* compiler: fix infinite recursion in string constant evaluation.ian2012-04-161-2/+16
* compiler: Fix order of evaluation of struct composite literals.ian2012-03-302-7/+47
* compiler, libgo: unsafe.{Sizeof,Alignof,Offsetof} return uintptr.ian2012-03-292-9/+13
* compiler: fix null-dereference on invalid len() arg.ian2012-03-281-2/+2
* compiler: avoid an ICE on bound interface methods used as values.ian2012-03-281-1/+2
* compiler: fix method finalization of unnamed structs.ian2012-03-281-1/+5
* compiler: fix crashes.ian2012-03-282-1/+3
* compiler: Rewrite handling of untyped numeric constants.ian2012-03-285-2054/+1667
* compiler: Be more careful to follow GENERIC type rules.ian2012-03-093-6/+38
* compiler: Correct handling of sink receiver.ian2012-03-091-3/+2
* compiler: Don't initialize zero sized variables.ian2012-03-085-5/+99
* compiler: Don't crash on array assignment.ian2012-03-081-2/+4
* compiler: Don't crash if writing type functions too late due to error.ian2012-03-072-0/+11
* compiler: Fix struct inheriting interface with varargs method.ian2012-03-071-2/+6
* libgo: Update to weekly.2012-02-14 release.ian2012-03-021-54/+0
* compiler: Reliably give errors on misuse of multiple value call.ian2012-03-011-13/+16
* compiler: Fix varargs functions that call recover.ian2012-03-012-1/+8
* compiler: Fix handling of indirection of circular types.ian2012-03-011-18/+22
* compiler: Avoid some compiler crashes on invalid code.ian2012-03-014-4/+15
* compiler: Fix unary ^ applied to typed signed integer constant.ian2012-03-011-3/+22
* compiler: Avoid various crashes on error conditions.ian2012-02-292-14/+34
* compiler: Fix handling of invalid types within invalid types.ian2012-02-292-20/+7
* 2012-02-23 Richard Guenther <rguenther@suse.de>rguenth2012-02-232-1/+6
* compiler: Permit an empty interface to be embedded multiple times.ian2012-02-181-1/+1
* compiler: Permit (_) on left hand side of =.ian2012-02-171-1/+1
* compiler: List imported packages in export information.ian2012-02-176-4/+74
* compiler: Add parameter names to export information.ian2012-02-179-46/+100
* compiler: Don't lower binary expressions with mismatched types.ian2012-02-171-0/+3
* * gospec.c (lang_specific_driver): If linking, and no -o optionian2012-02-172-22/+41
* compiler: Fix backend representation for interface methods.ian2012-02-171-2/+29
* compiler: Check for initialization loop in constant initializer.ian2012-02-171-2/+9
* compiler: Don't crash on erroneous unnamed integer type descriptor.ian2012-02-161-3/+3
* compiler: Lower constant string comparisons.ian2012-02-161-4/+35
* compiler: Fix crash: type T1 struct { F *[1]T2 } where T2 is a struct.ian2012-02-164-81/+352
* compiler: Avoid crashes on erroneous input.ian2012-02-153-4/+15
* PR go/48411ian2012-02-142-7/+25
* math: Compile with -mfancy-math-387 -funsafe-optimizations on x86.ian2012-02-081-1/+2
* compiler, runtime: Check make int64 args for overflow.ian2012-02-082-6/+33
* compiler, libgo: Use //extern comments rather than __asm__.ian2012-02-075-12/+76
* compiler, reflect: Fix hash codes of named types, fix PtrTo hash.ian2012-02-041-1/+6
* compiler: Compare slice start and end with cap, not len.ian2012-02-022-14/+27
* compiler: Permit importing a method to a type being defined.ian2012-02-025-13/+32
* compiler: Fix parameter references in method expressions.ian2012-02-021-6/+17
* compiler: Fix type checking for append.ian2012-02-011-6/+13
* compiler: Don't crash on switch _ := v.(type).ian2012-02-011-3/+10
* PR target/52079jakub2012-02-012-2/+24
* compiler: Permit a general expression in case x := <-c.ian2012-02-011-9/+17