1
0
mirror of https://github.com/golang/go synced 2024-11-17 13:04:54 -07:00
go/test/fixedbugs
Emmanuel Odeke 2d573eee8a cmd/compile: improve error message for wrong number of arguments to return
Fixes #4215.
Fixes #6750.

Improves the error message for wrong number of arguments by comparing
the signature of the return call site arguments, versus the function's
expected return arguments.

In this CL, the signature representation of:
+ ideal numbers(TIDEAL) ie float*, complex*, rune, int is
"number" instead of "untyped number".
+ idealstring is "string" instead of "untyped string".
+ idealbool is "bool" instead of "untyped bool".

However, the representation of other types remains as the compiler
would produce.

* Example 1(in the error messages, if all lines were printed):
$ cat main.go && go run main.go
package main

func foo() (int, int) {
  return 2.3
}

func foo2() {
  return int(2), 2
}

func foo3(v int) (a, b, c, d int) {
  if v >= 5 {
    return 1
  }
  return 2, 3
}

func foo4(name string) (string, int) {
  switch name {
  case "cow":
    return "moo"
  case "dog":
    return "dog", 10, true
  case "fish":
    return ""
  default:
    return "lizard", 10
  }
}

type S int
type T string
type U float64

func foo5() (S, T, U) {
  if false {
    return ""
  } else {
    ptr := new(T)
    return ptr
  }
  return new(S), 12.34, 1 + 0i, 'r', true
}

func foo6() (T, string) {
  return "T"
}

./issue4215.go:4: not enough arguments to return, got (number) want (int, int)
./issue4215.go:8: too many arguments to return, got (int, number) want ()
./issue4215.go:13: not enough arguments to return, got (number) want (int, int, int, int)
./issue4215.go:15: not enough arguments to return, got (number, number) want (int, int, int, int)
./issue4215.go:21: not enough arguments to return, got (string) want (string, int)
./issue4215.go:23: too many arguments to return, got (string, number, bool) want (string, int)
./issue4215.go:25: not enough arguments to return, got (string) want (string, int)
./issue4215.go:37: not enough arguments to return, got (string) want (S, T, U)
./issue4215.go:40: not enough arguments to return, got (*T) want (S, T, U)
./issue4215.go:42: too many arguments to return, got (*S, number, number, number, bool) want (S, T, U)
./issue4215.go:46: not enough arguments to return, got (string) want (T, string)
./issue4215.go:46: too many errors

* Example 2:
$ cat 6750.go && go run 6750.go
package main

import "fmt"

func printmany(nums ...int) {
  for i, n := range nums {
    fmt.Printf("%d: %d\n", i, n)
  }
  fmt.Printf("\n")
}

func main() {
  printmany(1, 2, 3)
  printmany([]int{1, 2, 3}...)
  printmany(1, "abc", []int{2, 3}...)
}
./issue6750.go:15: too many arguments in call to printmany, got (number, string, []int) want (...int)

Change-Id: I6fdce78553ae81770840070e2c975d3e3c83d5d8
Reviewed-on: https://go-review.googlesource.com/25156
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
2016-10-02 16:28:02 +00:00
..
bug083.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug088.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug106.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug133.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug160.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug191.dir
bug222.dir
bug248.dir
bug282.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug302.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug306.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug313.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug322.dir
bug324.dir
bug335.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug345.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug367.dir
bug369.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug377.dir
bug382.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug392.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug396.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug404.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug407.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug414.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug415.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug424.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug437.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug448.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug460.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug465.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug466.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug467.dir
bug468.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug472.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug478.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug479.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug480.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug488.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug492.dir
gcc67968.dir
issue3552.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4252.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4326.dir
issue4370.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4510.dir
issue4590.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4879.dir
issue4932.dir
issue4964.dir
issue5105.dir
issue5125.dir
issue5259.dir
issue5260.dir
issue5291.dir
issue5470.dir
issue5614.dir
issue5755.dir
issue5910.dir
issue5957.dir
issue6295.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6513.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6789.dir
issue7023.dir
issue7648.dir
issue7995b.dir
issue8060.dir
issue8280.dir
issue9355.dir
issue9537.dir
issue9608.dir test: expand switch dead code test to include a range 2016-08-23 05:12:39 +00:00
issue10066.dir
issue10219.dir
issue10700.dir
issue11053.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12677.dir
issue13777.dir
issue14164.dir
issue14331.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15071.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15470.dir test: added test case for (fixed) issue 15470 2016-04-29 00:42:13 +00:00
issue15514.dir cmd/compile: export package for _ (blank) struct fields 2016-08-23 23:40:36 +00:00
issue15548.dir test: update test for issue 15548 2016-05-06 02:50:42 +00:00
issue15572.dir cmd/compile: fix binary export of composite literals with implicit types 2016-05-09 06:16:07 +00:00
issue15646.dir cmd/compile: clean up encoding of method expressions and add test 2016-05-11 19:23:04 +00:00
issue15838.dir cmd/compile: correctly import labels, gotos, and fallthroughs 2016-05-26 00:32:03 +00:00
issue15920.dir cmd/compile: correctly export underlying type of predecl. error type 2016-06-01 21:32:46 +00:00
issue16133.dir cmd/compile: fix error msg mentioning different packages with same name 2016-06-22 00:12:55 +00:00
issue16317.dir cmd/compile: fix binary import of unsafe.Pointer literals 2016-08-23 18:03:07 +00:00
issue16616.dir cmd/compile: qualify unexported fields of unnamed types 2016-08-26 11:46:15 +00:00
bug000.go
bug002.go
bug003.go
bug004.go
bug005.go
bug006.go
bug007.go
bug008.go
bug009.go
bug010.go
bug011.go
bug012.go
bug013.go
bug014.go
bug015.go
bug016.go
bug017.go
bug020.go
bug021.go
bug022.go
bug023.go
bug024.go
bug026.go
bug027.go
bug028.go
bug030.go
bug031.go
bug035.go
bug037.go
bug039.go
bug040.go
bug045.go
bug046.go
bug047.go
bug048.go
bug049.go
bug050.go
bug051.go
bug052.go
bug053.go
bug054.go
bug055.go
bug056.go
bug057.go
bug058.go
bug059.go
bug060.go
bug061.go
bug062.go
bug063.go
bug064.go
bug065.go
bug066.go
bug067.go
bug068.go
bug069.go
bug070.go
bug071.go
bug072.go
bug073.go
bug074.go
bug075.go
bug076.go
bug077.go
bug078.go
bug080.go
bug081.go
bug082.go
bug083.go
bug084.go
bug085.go
bug086.go
bug087.go
bug088.go
bug089.go
bug090.go
bug091.go
bug092.go
bug093.go
bug094.go
bug096.go
bug097.go
bug098.go
bug099.go
bug101.go
bug102.go
bug103.go
bug104.go
bug106.go
bug107.go
bug108.go
bug109.go
bug110.go
bug111.go
bug112.go
bug113.go
bug114.go
bug115.go
bug116.go
bug117.go
bug118.go
bug119.go
bug120.go
bug121.go
bug122.go
bug123.go
bug126.go
bug127.go
bug128.go
bug129.go
bug130.go
bug131.go
bug132.go
bug133.go
bug135.go
bug136.go
bug137.go
bug139.go
bug140.go
bug141.go
bug142.go
bug143.go
bug144.go
bug145.go
bug146.go
bug147.go
bug148.go
bug149.go
bug150.go
bug151.go
bug152.go
bug154.go
bug155.go
bug156.go
bug157.go
bug158.go
bug159.go
bug160.go
bug161.go
bug163.go
bug164.go
bug165.go
bug167.go
bug168.go
bug169.go
bug170.go
bug171.go
bug172.go
bug173.go
bug174.go
bug175.go
bug176.go
bug177.go
bug178.go
bug179.go
bug180.go
bug181.go
bug182.go
bug183.go
bug184.go
bug185.go
bug186.go
bug187.go
bug188.go
bug189.go
bug190.go
bug191.go
bug192.go
bug193.go
bug194.go
bug195.go
bug196.go
bug197.go
bug198.go
bug199.go
bug200.go
bug201.go
bug202.go
bug203.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug204.go
bug205.go
bug206.go
bug206.out
bug207.go
bug208.go
bug209.go
bug211.go
bug212.go
bug213.go
bug214.go
bug215.go
bug216.go
bug217.go
bug218.go
bug219.go
bug221.go
bug222.go
bug223.go
bug224.go
bug225.go
bug227.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug228.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug229.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug230.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug231.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug232.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug233.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug234.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug235.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug236.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug237.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug238.go
bug239.go
bug240.go
bug241.go
bug242.go
bug243.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug244.go
bug245.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug246.go
bug247.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug248.go
bug249.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug250.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug251.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug252.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug253.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug254.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug255.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug256.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug257.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug258.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug259.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug260.go
bug261.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug262.go
bug263.go
bug264.go
bug265.go
bug266.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug267.go
bug269.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug271.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug272.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug273.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug274.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug275.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug276.go
bug277.go
bug278.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug279.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug280.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug281.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug282.go
bug283.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug284.go
bug285.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug286.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug287.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug288.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug289.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug290.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug291.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug292.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug293.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug294.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug295.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug296.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug297.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug298.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug299.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug300.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug301.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug302.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug303.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug304.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug305.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug306.go
bug307.go
bug308.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug309.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug311.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug312.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug313.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug314.go
bug315.go
bug316.go
bug317.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug318.go
bug319.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug320.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug321.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug322.go
bug323.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug324.go
bug325.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug326.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug327.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug328.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug328.out
bug329.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug330.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug331.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug332.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug333.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug334.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug335.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug336.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug337.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug338.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug339.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug340.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug341.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug342.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug343.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug344.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug345.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug346.go
bug347.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug348.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug349.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug350.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug351.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug352.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug353.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug354.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug355.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug356.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug357.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug358.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug361.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug362.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug363.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug364.go
bug365.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug366.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug367.go
bug368.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug369.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug370.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug371.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug372.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug373.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug374.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug375.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug376.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug377.go
bug378.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug379.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug380.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug381.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug382.go
bug383.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug384.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug385_32.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug385_64.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug386.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug387.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug388.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug389.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug390.go
bug391.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug392.go
bug393.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug394.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug396.go
bug397.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug398.go cmd/compile: add and enable (internal) option to only track named types 2016-05-07 23:56:02 +00:00
bug399.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug401.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug402.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug403.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug404.go
bug405.go
bug406.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug407.go
bug409.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug409.out
bug410.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug411.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug412.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug413.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug414.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug415.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug416.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug417.go
bug418.go
bug419.go
bug420.go
bug421.go
bug422.go
bug423.go
bug424.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug425.go
bug426.go
bug427.go
bug428.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug429_run.go
bug429.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug430.go
bug431.go
bug432.go
bug433.go
bug434.go
bug435.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug436.go
bug437.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug438.go
bug439.go
bug440_32.go
bug440_64.go
bug441.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug442.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug443.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug444.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug445.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug446.go
bug447.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug448.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug449.go
bug450.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug451.go
bug452.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug453.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug454.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug455.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug456.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug457.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug458.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug459.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug460.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug461.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug462.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug463.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug464.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug465.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug466.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug467.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug468.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug470.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug471.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug472.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug473.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug474.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug475.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug476.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug477.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug478.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug479.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug480.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug481.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug482.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug483.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug484.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug485.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug486.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug487.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug488.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug489.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug490.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug491.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug492.go
bug493.go
bug494.go
bug495.go
bug496.go
bug497.go
bug498.go test: add test case that gccgo miscompiled 2016-08-23 14:19:45 +00:00
bug1515.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug13343.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61204.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61244.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61246.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61248.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61253.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61254.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61255.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61258.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61264.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61265.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61273.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc65755.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc67968.go
issue887.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue1304.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue2615.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue3552.go
issue3705.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue3783.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue3925.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4066.go
issue4085a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4085b.go cmd/compile: generate makeslice calls with int arguments 2016-08-29 18:25:33 +00:00
issue4097.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4099.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4162.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4167.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4215.go cmd/compile: improve error message for wrong number of arguments to return 2016-10-02 16:28:02 +00:00
issue4232.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4251.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4252.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4264.go
issue4283.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4313.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4316.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4323.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4326.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4348.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4353.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4359.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4365.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4370.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4388.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4396a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4396b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4399.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4405.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4429.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4448.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4452.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4458.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4463.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4468.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4470.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4495.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4510.go
issue4517a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4517b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4517c.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4517d.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4518.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4529.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4545.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4562.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4585.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4590.go
issue4610.go
issue4614.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4618.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4620.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4654.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4663.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4667.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4734.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4748.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4752.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4776.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4785.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4813.go
issue4847.go
issue4879.go
issue4909a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4909b.go
issue4932.go
issue4964.go
issue5002.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5056.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5089.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5105.go
issue5125.go
issue5162.go
issue5172.go
issue5231.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5244.go
issue5259.go
issue5260.go
issue5291.go
issue5358.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5373.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5470.go
issue5493.go
issue5515.go
issue5581.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5607.go
issue5609.go
issue5614.go
issue5698.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5704.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5753.go
issue5755.go
issue5793.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5809.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5820.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5841.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5856.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5910.go
issue5957.go
issue5963.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6004.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6036.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6055.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6131.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6140.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6247.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6269.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6295.go
issue6298.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6399.go
issue6402.go
issue6403.go
issue6405.go
issue6406.go
issue6500.go
issue6513.go
issue6572.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6671.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703c.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703d.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703e.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703f.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703g.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703h.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703i.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703j.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703k.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703l.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703m.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703n.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703o.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703p.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703q.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703r.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703s.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703t.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703u.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703v.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703w.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703x.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703y.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703z.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6750.go cmd/compile: improve error message for wrong number of arguments to return 2016-10-02 16:28:02 +00:00
issue6789.go
issue6847.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6866.go
issue6889.go
issue6899.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6899.out
issue6902.go
issue6964.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7023.go
issue7044.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7050.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7083.go
issue7129.go
issue7150.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7153.go
issue7214.go
issue7223.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7272.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7310.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7316.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7346.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7366.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7405.go
issue7419.go
issue7525.go
issue7538a.go
issue7538b.go
issue7547.go
issue7550.go
issue7590.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7648.go
issue7675.go
issue7690.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7740.go
issue7742.go
issue7746.go
issue7760.go
issue7794.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7863.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7867.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7884.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7944.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7995.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7995b.go
issue7996.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7997.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7998.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8004.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8011.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8017.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8028.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8036.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8039.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8047.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8047b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8048.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8060.go
issue8073.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8074.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8076.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8079.go
issue8132.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8139.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8154.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8155.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8158.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8183.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8280.go
issue8311.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8325.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8336.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8347.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8385.go
issue8475.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8501.go
issue8507.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8612.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8613.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8620.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8745.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8761.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8836.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8947.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8961.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9006.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9017.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9036.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9076.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9083.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9110.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9321.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9355.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9370.go
issue9432.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9521.go
issue9537.go
issue9604.go
issue9604b.go
issue9608.go
issue9634.go
issue9691.go
issue9731.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9738.go
issue9862_run.go
issue9862.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10047.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10066.go
issue10135.go
issue10219.go
issue10253.go
issue10284.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10320.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10332.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10353.go
issue10407.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10441.go
issue10486.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10607.go test: enable fixedbugs/issue10607.go test on linux/mips64x 2016-05-04 16:42:08 +00:00
issue10607a.go
issue10654.go
issue10700.go
issue10925.go
issue10975.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10977.go
issue11053.go
issue11053.out
issue11256.go
issue11286.go
issue11326.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11326b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11359.go
issue11361.go
issue11362.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11369.go
issue11590.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11610.go cmd/compile/internal/syntax: match old parser errors and line numbers 2016-08-19 01:10:21 +00:00
issue11614.go
issue11656.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11699.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11737.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11750.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11771.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11790.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11987.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12006.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12108.go
issue12133.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12226.go
issue12347.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12411.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12413.go
issue12525.go
issue12577.go
issue12588.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12677.go
issue12686.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12944.go
issue13160.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13162.go cmd/compile: improve string iteration performance 2016-08-30 18:17:20 +00:00
issue13169.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13171.go
issue13248.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13261.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13262.go cmd/compile: fix bogus "fallthrough statement out of place" 2016-09-26 15:46:44 +00:00
issue13266.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13268.go
issue13273.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13274.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13319.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13337.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13365.go
issue13415.go
issue13471.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13480.go
issue13539.go
issue13559.go
issue13587.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13684.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13777.go
issue13779.go cmd/compile, go/types: omit needless word in error message 2016-05-24 15:07:16 +00:00
issue13799.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13821.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13821b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14006.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14010.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14136.go cmd/compile: don't exit early because of hidden error messages 2016-05-19 23:17:54 +00:00
issue14164.go
issue14331.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14405.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14520.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14553.go
issue14591.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14636.go
issue14646.go
issue14651.go
issue14652.go
issue14725.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14729.go cmd/compile: reject embedded unsafe.Pointer values 2016-04-21 00:32:01 +00:00
issue14988.go
issue14999.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15002.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15013.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15039.go
issue15042.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15084.go test: add test for issue 15084 2016-04-25 19:20:40 +00:00
issue15091.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15175.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15252.go cmd/compile: fix register size for ODOTPTR result 2016-04-14 21:19:12 +00:00
issue15277.go cmd/compile: args no longer live until end-of-function 2016-09-19 16:54:35 +00:00
issue15281.go cmd/compile: clear hidden value at end of channel range body 2016-04-14 19:20:26 +00:00
issue15303.go cmd/compile: when inlining ==, don’t take the address of the values 2016-08-25 17:51:10 +00:00
issue15311.go cmd/compile: a dot expression can not be a struct literal key 2016-04-18 15:09:47 +00:00
issue15329.go cmd/compile: handle unsafe.Pointer(f()) correctly 2016-05-18 14:01:22 +00:00
issue15439.go cmd/compile: treat empty and absent struct field tags as identical 2016-04-25 21:28:45 +00:00
issue15470.go test: added test case for (fixed) issue 15470 2016-04-29 00:42:13 +00:00
issue15514.go cmd/compile: export package for _ (blank) struct fields 2016-08-23 23:40:36 +00:00
issue15528.go cmd/compile: statically initialize some interface values 2016-09-12 14:31:26 +00:00
issue15548.go cmd/compile: verify imported types after they are fully imported 2016-05-05 20:31:30 +00:00
issue15572.go cmd/compile: fix binary export of composite literals with implicit types 2016-05-09 06:16:07 +00:00
issue15585.go cmd/compile: correct sparseSet probes in regalloc to avoid index error 2016-05-09 18:35:44 +00:00
issue15602.go test: add test for issue 15602 2016-05-08 22:59:43 +00:00
issue15604.go test: add test for unlowered ITab 2016-05-10 16:30:34 +00:00
issue15646.go cmd/compile: clean up encoding of method expressions and add test 2016-05-11 19:23:04 +00:00
issue15722.go test: add test for gccgo issue #15722 2016-08-23 20:43:59 +00:00
issue15733.go cmd/compile: large ptr literals must escape 2016-05-19 15:12:01 +00:00
issue15747.go cmd/compile: args no longer live until end-of-function 2016-09-19 16:54:35 +00:00
issue15747b.go cmd/compile: fix liveness computation for heap-escaped parameters 2016-05-27 03:19:52 +00:00
issue15838.go cmd/compile: correctly import labels, gotos, and fallthroughs 2016-05-26 00:32:03 +00:00
issue15895.go test: add test for issue 15895 2016-09-04 00:15:41 +00:00
issue15898.go cmd/compile: disallow multiple nil cases in a type switch 2016-05-31 20:31:00 +00:00
issue15902.go cmd/compile: for arm, zero unaligned memory 1 byte at a time 2016-06-01 14:14:13 +00:00
issue15920.go cmd/compile: correctly export underlying type of predecl. error type 2016-06-01 21:32:46 +00:00
issue15926.go cmd/link: avoid name collision with DWARF .def suffix 2016-06-03 16:56:29 +00:00
issue15961.go cmd/compile: use fake package for allocating autos 2016-06-07 06:04:23 +00:00
issue15975.go cmd/compile: nilcheck interface value in go/defer interface call for SSA 2016-06-08 20:35:53 +00:00
issue15988.go cmd/compile: cgen_append can handle complex targets 2016-06-08 00:01:09 +00:00
issue16008.go test: add missing copyright notice 2016-06-20 23:46:33 +00:00
issue16016.go cmd/compile: for tail calls in stubs, ensure args are alive 2016-06-09 19:32:51 +00:00
issue16037_run.go cmd/compile, etc: handle many struct fields 2016-06-14 15:32:34 +00:00
issue16095.go cmd/compile: keep heap pointer for escaping output parameters live 2016-06-27 16:48:48 +00:00
issue16130.go runtime: panic with the right error on iface conversion 2016-06-21 01:43:42 +00:00
issue16133.go cmd/compile: fix error msg mentioning different packages with same name 2016-06-22 00:12:55 +00:00
issue16193.go cmd/compile: avoid function literal name collision with "glob" 2016-06-27 21:05:28 +00:00
issue16249.go cmd/compile: mark live heap-allocated pparamout vars as needzero 2016-07-02 00:40:40 +00:00
issue16306.go cmd/compile: allow unsafe.Pointer(nil) as static data 2016-08-16 17:47:50 +00:00
issue16317.go cmd/compile: fix binary import of unsafe.Pointer literals 2016-08-23 18:03:07 +00:00
issue16369.go cmd/compile: don't crash when exporting self-recursive interfaces 2016-08-16 17:07:03 +00:00
issue16439.go cmd/compile: only allow integer expressions as keys in array literals 2016-09-26 17:49:41 +00:00
issue16515.go cmd/compile: fix possible spill of invalid pointer with DUFFZERO on AMD64 2016-07-29 01:09:55 +00:00
issue16616.go cmd/compile: qualify unexported fields of unnamed types 2016-08-26 11:46:15 +00:00
issue16733.go cmd/compile: don't fold >32bit constants into a MULQ 2016-08-16 16:46:48 +00:00
issue16741.go cmd/compile: CSE copied tuple selectors 2016-08-17 21:03:26 +00:00
issue16804.go cmd/compile: fix compilation of math.Sqrt when used as a statement 2016-08-21 16:49:48 +00:00
issue16870.go cmd/compile: fix comma-ok assignments for non-boolean ok 2016-09-14 22:11:38 +00:00
issue16948.go cmd/compile: fix scheduling of memory-producing tuple ops 2016-09-01 14:25:46 +00:00
issue16949.go cmd/compile: disallow typed non-integer constant len and cap make arguments 2016-09-01 20:29:03 +00:00
issue16985.go cmd/compile: mark some AMD64 atomic ops as clobberFlags 2016-09-06 14:26:18 +00:00
issue17005.go cmd/compile: add BVC/BVS to branch ops in ppc64/prog.go 2016-09-07 01:30:34 +00:00
issue17038.go cmd/compile: don't crash on complex(0()) 2016-09-11 20:43:51 +00:00
issue17111.go cmd/compile: unwrap fewer CONVNOPs in staticassign 2016-09-15 14:08:10 +00:00
issue17270.go cmd/compile: don't crash on (unsafe.Sizeof)(0) 2016-09-28 23:13:53 +00:00