aboutsummaryrefslogtreecommitdiffhomepage
path: root/transform/gc_test.go
blob: c071c5f4d97a16523e8450170e7b5a68b3b21c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package transform_test

import (
	"testing"

	"github.com/tinygo-org/tinygo/transform"
	"tinygo.org/x/go-llvm"
)

func TestMakeGCStackSlots(t *testing.T) {
	t.Parallel()
	testTransform(t, "testdata/gc-stackslots", func(mod llvm.Module) {
		transform.MakeGCStackSlots(mod)
	})
}