aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue42753.go
blob: a998d1d3b3d92a436777489dc5c818f18c44f7a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// compile -d=ssa/check/on

// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package main

func f() uint32 {
	s := "\x01"
	x := -int32(s[0])
	return uint32(x) & 0x7fffffff
}