处理AI胡乱生成的乱摊子
This commit is contained in:
12
vendor/github.com/chenzhuoyu/base64x/faststr.go
generated
vendored
12
vendor/github.com/chenzhuoyu/base64x/faststr.go
generated
vendored
@@ -21,3 +21,15 @@ func str2mem(s string) (v []byte) {
|
||||
func mem2addr(v []byte) unsafe.Pointer {
|
||||
return *(*unsafe.Pointer)(unsafe.Pointer(&v))
|
||||
}
|
||||
|
||||
// NoEscape hides a pointer from escape analysis. NoEscape is
|
||||
// the identity function but escape analysis doesn't think the
|
||||
// output depends on the input. NoEscape is inlined and currently
|
||||
// compiles down to zero instructions.
|
||||
// USE CAREFULLY!
|
||||
//go:nosplit
|
||||
//goland:noinspection GoVetUnsafePointer
|
||||
func noEscape(p unsafe.Pointer) unsafe.Pointer {
|
||||
x := uintptr(p)
|
||||
return unsafe.Pointer(x ^ 0)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user