Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tabu (0.13 sec)

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

    	XTAB	R0>>8, R2          // ERROR "illegal shift"
    	XTAH	R0<<16, R2         // ERROR "illegal shift"
    	XTABU	R0->24, R2         // ERROR "illegal shift"
    	XTAHU	R0@>1, R2          // ERROR "illegal shift"
    	XTAB	R0>>8, R5, R2      // ERROR "illegal shift"
    	XTAH	R0<<16, R5, R2     // ERROR "illegal shift"
    	XTABU	R0->24, R5, R2     // ERROR "illegal shift"
    	XTAHU	R0@>1, R5, R2      // ERROR "illegal shift"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 03 14:06:21 GMT 2017
    - 14.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/endtoend_test.go

    			}
    		}
    
    		if hexes != "" {
    			hexByLine[fmt.Sprintf("%s:%d", input, lineno)] = hexes
    		}
    
    		// Canonicalize spacing in printed form.
    		// First field is opcode, then tab, then arguments separated by spaces.
    		// Canonicalize spaces after commas first.
    		// Comma to separate argument gets a space; comma within does not.
    		var buf []byte
    		nest := 0
    		for i := 0; i < len(printed); i++ {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
Back to top