aboutsummaryrefslogtreecommitdiff
path: root/gcc/go/gofrontend
AgeCommit message (Expand)AuthorFilesLines
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
2012-01-24compiler: Verify types of sink variables.Ian Lance Taylor3-0/+25
2012-01-24compiler: Better handling of erroneous function signatures.Ian Lance Taylor7-26/+140
2012-01-24compiler: Better error message for invalid use of predeclared function.Ian Lance Taylor1-1/+2
2012-01-23compiler: Give an error if a variable is defined but not used.Ian Lance Taylor7-3/+146
2012-01-21compiler: The type descriptor of an undefined forward type is an error.Ian Lance Taylor1-1/+1
2012-01-21compiler: Check for calling value method with dereferenced value.Ian Lance Taylor1-0/+8
2012-01-21compiler: Change alias handling, change rune alias to int32.Ian Lance Taylor14-39/+217
2012-01-20compiler: Don't crash if receiver name is _.Ian Lance Taylor1-1/+2
2012-01-20compiler: Handle _ with explicit type correctly.Ian Lance Taylor1-2/+15
2012-01-20compiler: Handle recursive interfaces.Ian Lance Taylor8-222/+374
2012-01-17compiler: Don't use import path for ./ or ../ imports.Ian Lance Taylor1-3/+14
2012-01-12libgo: Update to weekly.2011-12-14.Ian Lance Taylor2-4/+99
2012-01-11compiler: Permit type B byte; type S []B; var v = S("x").Ian Lance Taylor4-29/+55
2012-01-11compiler: Don't use memcmp for structs/arrays with padding.Ian Lance Taylor4-117/+170
2012-01-11compiler: Fix names for hash/equality functions for unnamed types.Ian Lance Taylor1-1/+11
2012-01-11compiler: Use backend interface for type sizes and alignments.Ian Lance Taylor4-50/+239
2012-01-06compiler, runtime: Implement struct and array comparisons.Ian Lance Taylor10-175/+1530
2011-12-28compiler: Prohibit comparisons of funcs, maps, and slices to non-nil.Ian Lance Taylor3-8/+23
2011-12-28compiler: Rework range over slice.Ian Lance Taylor2-2/+112
2011-12-14libgo: Update to weekly.2011-12-06.Ian Lance Taylor1-1/+1
2011-12-14compiler: Permit omitting &T in composite literal.Ian Lance Taylor1-3/+17
2011-12-14compiler: Move import of Go export data to gcc side of interface.Ian Lance Taylor2-36/+14
2011-12-13compiler: Fix multiple conversions to different named slices.Ian Lance Taylor1-2/+2
2011-12-13compiler: Permit converting between string and named []byte/[]rune.Ian Lance Taylor2-16/+5
2011-12-09compiler: Another correction to hidden fields in composite literals.Ian Lance Taylor1-8/+12
2011-12-09compiler: It's OK to assign a struct with hidden fields in a literal.Ian Lance Taylor1-12/+0
2011-12-08compiler: Don't check for hidden fields on struct assignments.Ian Lance Taylor2-2/+37
2011-12-02libgo: Update to weekly.2011-11-01.Ian Lance Taylor1-3/+4
2011-12-01compiler: add error to list of built-in types.Ian Lance Taylor3-1/+4
2011-12-01compiler/runtime: Copy channel implementation from master library.Ian Lance Taylor10-411/+341
2011-11-29compiler: Define and use backend-independent Location class.Sanjoy Das24-1020/+1259
2011-11-29Implement predefined error interface.Ian Lance Taylor1-0/+12
2011-11-04Fix select { case v, ok := <-c: }.Ian Lance Taylor1-4/+20
2011-10-28Add rune as an alias for int.Ian Lance Taylor1-0/+4
2011-10-25Implement predeclared delete function.Ian Lance Taylor3-48/+105
2011-10-25Don't permit close of receive-only channel.Ian Lance Taylor1-0/+2
2011-10-25Implement new order of assignment rules.Ian Lance Taylor3-2/+103
2011-10-24Error if naked return when result variables are shadowed.Ian Lance Taylor1-0/+17
2011-10-24Implement append([]byte, string...).Ian Lance Taylor1-17/+48
2011-10-24Rename is_open_array_type to is_slice_type.Ian Lance Taylor5-38/+37
2011-10-11Remove incorrect ChangeLog entry, correct spacing.Ian Lance Taylor1-1/+1
2011-10-11Convert standard builtin functions from being arrays to using a functional in...Michael Meissner1-5/+3
2011-10-04Fix global var initialized to function call with calls as arguments.Ian Lance Taylor1-0/+5
2011-09-26Fix location of error about unused import "unsafe".Ian Lance Taylor1-0/+1
2011-09-23Better parsing of erroneous expression on left of :=.Ian Lance Taylor1-1/+26