Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCSEAuxPartitionBug (0.16 sec)

  1. src/cmd/compile/internal/ssa/cse_test.go

    	"testing"
    )
    
    type tstAux struct {
    	s string
    }
    
    func (*tstAux) CanBeAnSSAAux() {}
    
    // This tests for a bug found when partitioning, but not sorting by the Aux value.
    func TestCSEAuxPartitionBug(t *testing.T) {
    	c := testConfig(t)
    	arg1Aux := &tstAux{"arg1-aux"}
    	arg2Aux := &tstAux{"arg2-aux"}
    	arg3Aux := &tstAux{"arg3-aux"}
    	a := c.Temp(c.config.Types.Int8.PtrTo())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top