/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue26163.go
17 строк
400 B
Cherry Mui
[dev.typeparams] cmd/compile: make softfloat mode work with register ABI
03 авг 2021, 19:14
03 авг 2021, 19:14
656f088
Код
Авторство
О чём код?
// compile -N -d=softfloat // Copyright 2018 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. // Issue 26163: dead store generated in late opt messes // up store chain calculation. package p var i int var A = ([]*int{})[i] var F func(float64, complex128) int var C chan complex128 var B = F(1, 1+(<-C))