Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for moveValuesWithMemoryArg (0.15 sec)

  1. test/tighten.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var (
    	e  any
    	ts uint16
    )
    
    func moveValuesWithMemoryArg(len int) {
    	for n := 0; n < len; n++ {
    		// Load of e.data is lowed as a MOVDload op, which has a memory
    		// argument. It's moved near where it's used.
    		_ = e != ts // ERROR "MOVDload is moved$" "MOVDaddr is moved$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 513 bytes
    - Viewed (0)
Back to top