Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestSSACompare (0.13 sec)

  1. src/cmd/compile/internal/types/type_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"testing"
    )
    
    func TestSSACompare(t *testing.T) {
    	a := []*Type{
    		TypeInvalid,
    		TypeMem,
    		TypeFlags,
    		TypeVoid,
    		TypeInt128,
    	}
    	for _, x := range a {
    		for _, y := range a {
    			c := x.Compare(y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 26 19:34:52 UTC 2021
    - 511 bytes
    - Viewed (0)
Back to top