Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for 1st (0.07 seconds)

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

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    TEXT errors(SB),$0
    	CSRRC	(X10), CYCLE, X5		// ERROR "integer register or immediate expected for 1st operand"
    	CSRRC	X0, TU, X5			// ERROR "unknown CSR"
    	CSRRC	X0, CYCLE			// ERROR "missing CSR name"
    	CSRRC	X0, CYCLE, (X10)		// ERROR "needs an integer register output"
    	CSRRC	$-1, TIME, X15			// ERROR "immediate out of range 0 to 31"
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 04:17:57 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  2. doc/go_spec.html

    For each iteration, iteration values are produced as follows
    if the respective iteration variables are present:
    </p>
    
    <pre class="grammar">
    Range expression                                       1st value                2nd value
    
    array or slice      a  [n]E, *[n]E, or []E             index    i  int          a[i]       E
    string              s  string type                     index    i  int          see below  rune
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 23:39:18 GMT 2026
    - 287.8K bytes
    - Click Count (1)
Back to Top