1// errorcheck -0 -d=ssa/intrinsics/debug 2 3//go:build amd64 || arm64 || loong64 || mips || mipsle || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x 4 5// Copyright 2016 The Go Authors. All rights reserved. 6// Use of this source code is governed by a BSD-style 7// license that can be found in the LICENSE file. 8 9package main 10 11import "sync/atomic" 12 13var x uint32 14 15func atomics() { 16 _ = atomic.LoadUint32(&x) // ERROR "intrinsic substitution for LoadUint32" 17 atomic.StoreUint32(&x, 1) // ERROR "intrinsic substitution for StoreUint32" 18 atomic.AddUint32(&x, 1) // ERROR "intrinsic substitution for AddUint32" 19 atomic.SwapUint32(&x, 1) // ERROR "intrinsic substitution for SwapUint32" 20 atomic.CompareAndSwapUint32(&x, 1, 2) // ERROR "intrinsic substitution for CompareAndSwapUint32" 21} 22