(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestCreateStackSizeLoads(t *testing.T) { |
| 12 | t.Parallel() |
| 13 | testTransform(t, "testdata/stacksize", func(mod llvm.Module) { |
| 14 | // Run optimization pass. |
| 15 | transform.CreateStackSizeLoads(mod, &compileopts.Config{ |
| 16 | Options: &compileopts.Options{}, |
| 17 | Target: &compileopts.TargetSpec{ |
| 18 | DefaultStackSize: 1024, |
| 19 | }, |
| 20 | }) |
| 21 | }) |
| 22 | } |
nothing calls this directly
no test coverage detected