1
0
mirror of https://github.com/golang/go synced 2024-09-29 19:24:33 -06:00

cmd/compile: delete stray file

This found its way in accidentally.

Change-Id: I830f1e3ec4852a213901a679ad20094a6958cb07
Reviewed-on: https://go-review.googlesource.com/c/go/+/220680
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Josh Bleecher Snyder 2020-02-24 14:52:19 -08:00
parent 49db4ae40f
commit 17f7c12eb9

View File

@ -1,17 +0,0 @@
idea: pack info about value substructure into an int64
all values should be encoded as 1<<x, probably byte by byte
and the hardcoded values should be encoded the same way,
or as 11111111 for "any"
then AND together "have" and "want"
and if zero in any byte (or maybe use popcount < 8?)
then skip because there is a mismatch
possibble things to include:
* number of args of v.Args[0], v.Args[1], ...
* op of v.Args[0]%8, v.Args[1]%8, ...
then can also calculate v.Args[0][0], etc at top and share,
also: cut down commutativity