aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/shortcircuit_test.go
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2016-01-31 11:39:39 -0800
committerKeith Randall <khr@golang.org>2016-02-02 02:55:13 +0000
commit16b1fce9217886797940247f6ffce57e119c3e47 (patch)
treef698164449d4e65e3759c051952e7be113553e30 /src/cmd/compile/internal/ssa/shortcircuit_test.go
parentc87a62f32bc5080c6656d3f80e2da8d5c63ed55b (diff)
downloadgo-16b1fce9217886797940247f6ffce57e119c3e47.tar.gz
go-16b1fce9217886797940247f6ffce57e119c3e47.zip
[dev.ssa] cmd/compile: add aux typing, flags to ops
Add the aux type to opcodes. Add rematerializeable as a flag. Change-Id: I906e19281498f3ee51bb136299bf26e13a54b2ec Reviewed-on: https://go-review.googlesource.com/19088 Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Todd Neal <todd@tneal.org>
Diffstat (limited to 'src/cmd/compile/internal/ssa/shortcircuit_test.go')
-rw-r--r--src/cmd/compile/internal/ssa/shortcircuit_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/ssa/shortcircuit_test.go b/src/cmd/compile/internal/ssa/shortcircuit_test.go
index d518dfbabf..f208801fc1 100644
--- a/src/cmd/compile/internal/ssa/shortcircuit_test.go
+++ b/src/cmd/compile/internal/ssa/shortcircuit_test.go
@@ -11,7 +11,7 @@ func TestShortCircuit(t *testing.T) {
fun := Fun(c, "entry",
Bloc("entry",
- Valu("mem", OpInitMem, TypeMem, 0, ".mem"),
+ Valu("mem", OpInitMem, TypeMem, 0, nil),
Valu("arg1", OpArg, TypeInt64, 0, nil),
Valu("arg2", OpArg, TypeInt64, 0, nil),
Valu("arg3", OpArg, TypeInt64, 0, nil),