Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for msys (0.15 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	MSR	R13, ZCR_EL1                       // 0d1218d5
    	MRS	ZCR_EL1, R23                       // 171238d5
    	MSR	R17, ZCR_EL1                       // 111218d5
    	SYS	$32768, R1                         // 018008d5
    	SYS	$32768                             // 1f8008d5
    
    // TLBI instruction
    	TLBI	VMALLE1IS                          // 1f8308d5
    	TLBI	VMALLE1                            // 1f8708d5
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		name := f.Name
    		ft := f.Type
    
    		// In godefs mode, if this field is a C11
    		// anonymous union then treat the first field in the
    		// union as the field in the struct. This handles
    		// cases like the glibc <sys/resource.h> file; see
    		// issue 6677.
    		if *godefs {
    			if st, ok := f.Type.(*dwarf.StructType); ok && name == "" && st.Kind == "union" && len(st.Field) > 0 && !used[st.Field[0].Name] {
    				name = st.Field[0].Name
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top